summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2015-04-22 22:11:48 -0400
committerRich Felker <dalias@aerifal.cx>2015-04-22 22:11:48 -0400
commit3aacb54ead6ef83c3da1216687a34e97b494f5ca (patch)
treeac780ca18bc4ba09250662cdb2f4c5cb6de109e6 /configure
parentafbcac6826988d12d9a874359cab735049c17500 (diff)
downloadmusl-3aacb54ead6ef83c3da1216687a34e97b494f5ca.tar.gz
fix syntax errors in configure script
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
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