From 3aacb54ead6ef83c3da1216687a34e97b494f5ca Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 22 Apr 2015 22:11:48 -0400 Subject: fix syntax errors in configure script --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure') 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 -- cgit v1.2.1