From 65152c1ba80e1e9cef89ba8642f564b9d78102b2 Mon Sep 17 00:00:00 2001 From: rfm Date: Mon, 16 Feb 2009 06:50:00 +0000 Subject: [PATCH] Fix typo git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27878 72102866-910b-0410-8b05-ffd578937521 --- Source/pathconfig/configure | 4 ++-- Source/pathconfig/configure.ac | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/pathconfig/configure b/Source/pathconfig/configure index 897ccbf0a..63f9ed926 100755 --- a/Source/pathconfig/configure +++ b/Source/pathconfig/configure @@ -1711,7 +1711,7 @@ else result="no" fi; -if test "$result" == "no" +if test "$result" = "no" then # Check if gnustep-config supports the option # --installation-domain-for, and use it if available. That option @@ -1726,7 +1726,7 @@ then { echo "$as_me:$LINENO: WARNING: The 'gnustep-config' script was not found or out of date." >&5 echo "$as_me: WARNING: The 'gnustep-config' script was not found or out of date." >&2;} result=$GNUSTEP_INSTALLATION_DOMAIN - if test "$result" == "" + if test "$result" = "" then # This case was added on December 2008 and is only for backwards # compatibility with older versions of gnustep-make. diff --git a/Source/pathconfig/configure.ac b/Source/pathconfig/configure.ac index 100602f29..9b77eb029 100644 --- a/Source/pathconfig/configure.ac +++ b/Source/pathconfig/configure.ac @@ -354,7 +354,7 @@ AC_ARG_WITH(installation-domain, result="$withval", result="no" ) -if test "$result" == "no" +if test "$result" = "no" then # Check if gnustep-config supports the option # --installation-domain-for, and use it if available. That option @@ -368,7 +368,7 @@ then else AC_MSG_WARN([The 'gnustep-config' script was not found or out of date.]) result=$GNUSTEP_INSTALLATION_DOMAIN - if test "$result" == "" + if test "$result" = "" then # This case was added on December 2008 and is only for backwards # compatibility with older versions of gnustep-make.