fix syntax errors in configure script
authorRich Felker <dalias@aerifal.cx>
Thu, 23 Apr 2015 02:11:48 +0000 (22:11 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 23 Apr 2015 02:11:48 +0000 (22:11 -0400)
configure

index 1b6b46495b03fe12d67db2102b9bfd178c094f2d..143dc92740aa36025870fdc255a5b0a76a6fee49 100755 (executable)
--- a/configure
+++ b/configure
@@ -421,7 +421,7 @@ tryflag CFLAGS_AUTO -Wno-unknown-pragmas
 tryflag CFLAGS_AUTO -Wno-pointer-to-int-cast
 fi
 
-if test "x$visibility" == xauto ; then
+if test "x$visibility" = xauto ; then
 # This test checks toolchain support for several things:
 # - the -include option
 # - the attributes/pragmas used in vis.h
@@ -441,7 +441,7 @@ fi
 printf "%s\n" "$visibility"
 fi
 
-if test "x$visibility" == xyes ; then
+if test "x$visibility" = xyes ; then
 CFLAGS_AUTO="$CFLAGS_AUTO -include vis.h"
 CFLAGS_AUTO="${CFLAGS_AUTO# }"
 fi