From a3df9dd120e963d043a1a2fcd7f5e1ead9bef8eb Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Thu, 1 Sep 2011 23:01:48 +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 25e73b4e3..1dcd3d14b 100644 --- a/configure.ac +++ b/configure.ac @@ -530,7 +530,7 @@ case "${host}" in esac -if test "$OPENAL_OK" == "no"; then +if test "$OPENAL_OK" = "no"; then echo echo "You *must* have the openal library installed on your system to build" echo "SimGear!" @@ -541,7 +541,7 @@ if test "$OPENAL_OK" == "no"; then exit fi -if test "$ALUT_OK" == "no"; then +if test "$ALUT_OK" = "no"; then echo echo "You *must* have the alut library installed on your system to build" echo "SimGear!" -- 2.39.5