use = for sh string tests, not ==

git-svn-id: svn://10.0.0.236/trunk@190041 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
richm%stanfordalumni.org
2006-02-15 00:33:08 +00:00
parent 3a4a89ff11
commit b5bdc57698
2 changed files with 2 additions and 2 deletions

View File

@@ -2395,7 +2395,7 @@ fi;
fi
if test "$no_nspr" == "no" -a -z "$NSPR_CFLAGS" -a -z "$NSPR_LIBS" ; then
if test "$no_nspr" = "no" -a -z "$NSPR_CFLAGS" -a -z "$NSPR_LIBS" ; then
if test -z "$_SYSTEM_NSPR" -o "$_SYSTEM_NSPR" = "no" ; then
echo "$as_me:$LINENO: checking checking for in-tree NSPR from ../../dist" >&5

View File

@@ -341,7 +341,7 @@ if test -z "$_SYSTEM_NSPR" -o "$_SYSTEM_NSPR" = "no" ; then
fi
dnl next, look for in-tree nspr if user did not specify explicit system nspr
if test "$no_nspr" == "no" -a -z "$NSPR_CFLAGS" -a -z "$NSPR_LIBS" ; then
if test "$no_nspr" = "no" -a -z "$NSPR_CFLAGS" -a -z "$NSPR_LIBS" ; then
if test -z "$_SYSTEM_NSPR" -o "$_SYSTEM_NSPR" = "no" ; then
dnl see if we are being built in the same build tree as nspr
AM_PATH_INTREE_NSPR(../../dist)