diff options
author | Christian Persch <chpe@src.gnome.org> | 2005-11-26 19:47:03 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-11-26 19:47:03 +0800 |
commit | c9fb45080ff2e2d45a7049c0b1ff8705f97f7dc2 (patch) | |
tree | 890b1c41df19fd9cb0734b763f34637c8c9611eb /m4 | |
parent | c9a772f6e394651686a71d417b974f1ab45c94f1 (diff) | |
download | gsoc2013-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
Diffstat (limited to 'm4')
-rw-r--r-- | m4/gecko.m4 | 4 |
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 |