summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2005-05-11 18:00:17 +0000
committerwtchang%redhat.com <devnull@localhost>2005-05-11 18:00:17 +0000
commitb10016bbf75275b183c40191910ac2602b76361d (patch)
treea320dd3b2345a1a759ec3e2dee320ae461c47e38
parent3212481903f3b6dde449ce065ee5c7ece9dd6a90 (diff)
downloadnspr-hg-b10016bbf75275b183c40191910ac2602b76361d.tar.gz
Bugzilla Bug 273336: arguments to the test command should be quoted.
r=jpierre,cls. a=shaver for aviary1.1a1. Tag: NSPRPUB_PRE_4_2_CLIENT_BRANCH
-rwxr-xr-xconfigure4
-rw-r--r--configure.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 025b200f..0d643171 100755
--- a/configure
+++ b/configure
@@ -2594,7 +2594,7 @@ EOF
fi
echo "$ac_t""$ac_cv_visibility_hidden" 1>&6
- if test $ac_cv_visibility_hidden = yes; then
+ if test "$ac_cv_visibility_hidden" = "yes"; then
cat >> confdefs.h <<\EOF
#define HAVE_VISIBILITY_HIDDEN_ATTRIBUTE 1
EOF
@@ -2623,7 +2623,7 @@ EOF
fi
echo "$ac_t""$ac_cv_visibility_pragma" 1>&6
- if test $ac_cv_visibility_pragma = yes; then
+ if test "$ac_cv_visibility_pragma" = "yes"; then
cat >> confdefs.h <<\EOF
#define HAVE_VISIBILITY_PRAGMA 1
EOF
diff --git a/configure.in b/configure.in
index d8ec8348..e1f070e2 100644
--- a/configure.in
+++ b/configure.in
@@ -504,7 +504,7 @@ EOF
fi
rm -f conftest.[cs]
])
- if test $ac_cv_visibility_hidden = yes; then
+ if test "$ac_cv_visibility_hidden" = "yes"; then
AC_DEFINE(HAVE_VISIBILITY_HIDDEN_ATTRIBUTE)
AC_CACHE_CHECK(for visibility pragma support,
ac_cv_visibility_pragma,
@@ -524,7 +524,7 @@ EOF
fi
rm -f conftest.[cs]
])
- if test $ac_cv_visibility_pragma = yes; then
+ if test "$ac_cv_visibility_pragma" = "yes"; then
AC_DEFINE(HAVE_VISIBILITY_PRAGMA)
VISIBILITY_FLAGS='-I$(dist_includedir)/system_wrappers -include $(topsrcdir)/config/gcc_hidden.h'
WRAP_SYSTEM_INCLUDES=1