Skip to content

Commit

Permalink
Fix bashisms in configure.ac
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Sep 1, 2011
1 parent 1c1722a commit a3df9dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand All @@ -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!"
Expand Down

0 comments on commit a3df9dd

Please sign in to comment.