Skip to content

Commit ceac7b4

Browse files
committed
Fix bashisms in configure.ac
1 parent 29faf13 commit ceac7b4

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
@@ -398,7 +398,7 @@ case "${host}" in
398398

399399
esac
400400

401-
if test "$OPENAL_OK" == "no" -a "x$enable_headless" != "xyes"; then
401+
if test "$OPENAL_OK" = "no" -a "x$enable_headless" != "xyes"; then
402402
echo
403403
echo "You *must* have the openal library installed on your system to build"
404404
echo "SimGear!"
@@ -409,7 +409,7 @@ if test "$OPENAL_OK" == "no" -a "x$enable_headless" != "xyes"; then
409409
exit
410410
fi
411411

412-
if test "$ALUT_OK" == "no" -a "x$enable_headless" != "xyes"; then
412+
if test "$ALUT_OK" = "no" -a "x$enable_headless" != "xyes"; then
413413
echo
414414
echo "You *must* have the alut library installed on your system to build"
415415
echo "SimGear!"

0 commit comments

Comments
 (0)