aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2005-11-26 19:47:03 +0800
committerChristian Persch <chpe@src.gnome.org>2005-11-26 19:47:03 +0800
commitc9fb45080ff2e2d45a7049c0b1ff8705f97f7dc2 (patch)
tree890b1c41df19fd9cb0734b763f34637c8c9611eb
parentc9a772f6e394651686a71d417b974f1ab45c94f1 (diff)
downloadgsoc2013-epiphany-c9fb45080ff2e2d45a7049c0b1ff8705f97f7dc2.tar
gsoc2013-epiphany-c9fb45080ff2e2d45a7049c0b1ff8705f97f7dc2.tar.gz
gsoc2013-epiphany-c9fb45080ff2e2d45a7049c0b1ff8705f97f7dc2.tar.bz2
gsoc2013-epiphany-c9fb45080ff2e2d45a7049c0b1ff8705f97f7dc2.tar.lz
gsoc2013-epiphany-c9fb45080ff2e2d45a7049c0b1ff8705f97f7dc2.tar.xz
gsoc2013-epiphany-c9fb45080ff2e2d45a7049c0b1ff8705f97f7dc2.tar.zst
gsoc2013-epiphany-c9fb45080ff2e2d45a7049c0b1ff8705f97f7dc2.zip
Fix -fshort-wchar compiler flag check
-rw-r--r--m4/gecko.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/gecko.m4 b/m4/gecko.m4
index 7f774cea3..4454e6084 100644
--- a/m4/gecko.m4
+++ b/m4/gecko.m4
@@ -51,7 +51,7 @@ _GECKO=$with_gecko
dnl Autodetect gecko
_geckos="firefox mozilla-firefox seamonkey mozilla xulrunner"
-if test "x$_GECKO" = "x"; then
+if test -z "$_GECKO"; then
for lizard in $_geckos; do
if $PKG_CONFIG --exists $lizard-xpcom; then
_GECKO=$lizard
@@ -113,7 +113,7 @@ CXXFLAGS="$_SAVE_CXXFLAGS"
AC_LANG_POP([C++])
-if test "$_GECKO_cv_have_usable_wchar_option" = "yes"; then
+if test "$gecko_cv_have_usable_wchar_option" = "yes"; then
CXXFLAGS="$CXXFLAGS -fshort-wchar"
AM_CXXFLAGS="$AM_CXXFLAGS -fshort-wchar"
fi