[gtk+] Remove bashisms from configure.ac



commit 7032996c76c577a9ab13c47f01ecadc762b87506
Author: Matthias Clasen <mclasen redhat com>
Date:   Mon Dec 27 19:24:05 2010 -0500

    Remove bashisms from configure.ac
    
    Pointed out by Koop Mast in
    https://bugzilla.gnome.org/show_bug.cgi?id=637974

 configure.ac |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 7be4641..a90f7d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1520,16 +1520,16 @@ _______EOF
 ],[
 gdk_windowing=''
 if expr "$gdktarget" : ".*x11.*" > /dev/null ; then
-  gdk_windowing+='
+  gdk_windowing='$gdk_windowing
 #define GDK_WINDOWING_X11'
 fi
 if expr "$gdktarget" : ".*win32.*" > /dev/null ; then
-  gdk_windowing+='
+  gdk_windowing='$gdk_windowing
 #define GDK_NATIVE_WINDOW_POINTER
 #define GDK_WINDOWING_WIN32'
 fi
 if expr "$gdktarget" : ".*quartz.*" > /dev/null ; then
-  gdk_windowing='
+  gdk_windowing='$gdk_windowing
 #define GDK_WINDOWING_QUARTZ'
 fi
 ])
@@ -1551,7 +1551,7 @@ AC_ARG_ENABLE(Bsymbolic,
                            enable_Bsymbolic=no)
                LDFLAGS="${SAVED_LDFLAGS}"])
 
-if test "x${enable_Bsymbolic}" == "xyes"; then
+if test "x${enable_Bsymbolic}" = "xyes" ; then
   GTK_LINK_FLAGS=-Wl,-Bsymbolic-functions
 fi
 AC_SUBST(GTK_LINK_FLAGS)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]