git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27878 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2009-02-16 06:50:00 +00:00
parent 17136fe4d0
commit 43afc6aa41
2 changed files with 4 additions and 4 deletions

View file

@ -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.

View file

@ -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.