Skip to content

Commit a3df9dd

Browse files
committed
Fix bashisms in configure.ac
1 parent 1c1722a commit a3df9dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ case "${host}" in
530530

531531
esac
532532

533-
if test "$OPENAL_OK" == "no"; then
533+
if test "$OPENAL_OK" = "no"; then
534534
echo
535535
echo "You *must* have the openal library installed on your system to build"
536536
echo "SimGear!"
@@ -541,7 +541,7 @@ if test "$OPENAL_OK" == "no"; then
541541
exit
542542
fi
543543

544-
if test "$ALUT_OK" == "no"; then
544+
if test "$ALUT_OK" = "no"; then
545545
echo
546546
echo "You *must* have the alut library installed on your system to build"
547547
echo "SimGear!"

0 commit comments

Comments
 (0)