Skip to content
This repository has been archived by the owner on Jan 6, 2018. It is now read-only.

Commit

Permalink
Replaced == with = for posix compliance. See https://github.com/trist…
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobstr committed Jun 4, 2012
1 parent 2d938d5 commit f01c8ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sh
Expand Up @@ -9,11 +9,11 @@ fi

PLATFORM=`uname -s`

if [ $PLATFORM == "Linux" ]; then
if [ $PLATFORM = "Linux" ]; then
SPEC="linux-g++"
elif [ $PLATFORM == "FreeBSD" ]; then
elif [ $PLATFORM = "FreeBSD" ]; then
SPEC="freebsd-g++"
elif [ $PLATFORM == "Darwin" ]; then
elif [ $PLATFORM = "Darwin" ]; then
SPEC="macx-g++"
else
echo "The $PLATFORM platform is not currently supported."
Expand Down

0 comments on commit f01c8ee

Please sign in to comment.