From b5bdc57698507814908fb42b7e30211358eb8555 Mon Sep 17 00:00:00 2001 From: "richm%stanfordalumni.org" Date: Wed, 15 Feb 2006 00:33:08 +0000 Subject: [PATCH] use = for sh string tests, not == git-svn-id: svn://10.0.0.236/trunk@190041 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/directory/c-sdk/configure | 2 +- mozilla/directory/c-sdk/configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/directory/c-sdk/configure b/mozilla/directory/c-sdk/configure index 71e1610098c..2b06ed735eb 100755 --- a/mozilla/directory/c-sdk/configure +++ b/mozilla/directory/c-sdk/configure @@ -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 diff --git a/mozilla/directory/c-sdk/configure.in b/mozilla/directory/c-sdk/configure.in index eac5b5cc918..4f5d5558d7a 100644 --- a/mozilla/directory/c-sdk/configure.in +++ b/mozilla/directory/c-sdk/configure.in @@ -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)