From: Rich Felker Date: Thu, 23 Apr 2015 02:11:48 +0000 (-0400) Subject: fix syntax errors in configure script X-Git-Tag: v1.1.9~26 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3aacb54ead6ef83c3da1216687a34e97b494f5ca;p=oweals%2Fmusl.git fix syntax errors in configure script --- diff --git a/configure b/configure index 1b6b4649..143dc927 100755 --- 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