From 21242258fce7c7653bcff15ad168fcfad4727bad Mon Sep 17 00:00:00 2001 From: "wtchang%redhat.com" Date: Wed, 11 May 2005 16:53:41 +0000 Subject: [PATCH] Bugzilla Bug 273336: arguments to the test command should be quoted. r=cls. --- nsprpub/configure | 4 ++-- nsprpub/configure.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nsprpub/configure b/nsprpub/configure index de37a5b691e..b51fe803e8c 100755 --- a/nsprpub/configure +++ b/nsprpub/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/nsprpub/configure.in b/nsprpub/configure.in index a1522383b61..5fbaf960758 100644 --- a/nsprpub/configure.in +++ b/nsprpub/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