summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2005-05-11 16:53:41 +0000
committerwtchang%redhat.com <devnull@localhost>2005-05-11 16:53:41 +0000
commitc077f28b07a008ab8edb7c356cf73e452afd585b (patch)
treeadaf5131a7c896200d996b861d131d488a1cd5b1
parente97321c9f4bf934862fc074d36350f132636b627 (diff)
downloadnspr-hg-c077f28b07a008ab8edb7c356cf73e452afd585b.tar.gz
Bugzilla Bug 273336: arguments to the test command should be quoted. r=cls.
-rwxr-xr-xconfigure4
-rw-r--r--configure.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index de37a5b6..b51fe803 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 a1522383..5fbaf960 100644
--- a/configure.in
+++ b/configure.in
@@ -502,7 +502,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,
@@ -522,7 +522,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