diff options
author | Rich Felker <dalias@aerifal.cx> | 2015-04-22 22:11:48 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-04-22 22:11:48 -0400 |
commit | 3aacb54ead6ef83c3da1216687a34e97b494f5ca (patch) | |
tree | ac780ca18bc4ba09250662cdb2f4c5cb6de109e6 | |
parent | afbcac6826988d12d9a874359cab735049c17500 (diff) | |
download | musl-3aacb54ead6ef83c3da1216687a34e97b494f5ca.tar.gz musl-3aacb54ead6ef83c3da1216687a34e97b494f5ca.tar.bz2 musl-3aacb54ead6ef83c3da1216687a34e97b494f5ca.tar.xz musl-3aacb54ead6ef83c3da1216687a34e97b494f5ca.zip |
fix syntax errors in configure script
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |