From ceac7b46fc932a78fdbdfc2b0094b28ee716f757 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Thu, 1 Sep 2011 22:53:59 +0400 Subject: [PATCH] Fix bashisms in configure.ac --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 81bae41e..09caad86 100644 --- a/configure.ac +++ b/configure.ac @@ -398,7 +398,7 @@ case "${host}" in esac -if test "$OPENAL_OK" == "no" -a "x$enable_headless" != "xyes"; then +if test "$OPENAL_OK" = "no" -a "x$enable_headless" != "xyes"; then echo echo "You *must* have the openal library installed on your system to build" echo "SimGear!" @@ -409,7 +409,7 @@ if test "$OPENAL_OK" == "no" -a "x$enable_headless" != "xyes"; then exit fi -if test "$ALUT_OK" == "no" -a "x$enable_headless" != "xyes"; then +if test "$ALUT_OK" = "no" -a "x$enable_headless" != "xyes"; then echo echo "You *must* have the alut library installed on your system to build" echo "SimGear!"