Skip to content

Commit

Permalink
Preserve quoting when passing arguments along
Browse files Browse the repository at this point in the history
  • Loading branch information
wader committed Nov 11, 2009
1 parent 980d113 commit 1d09b23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ KNAME=`uname -s`

if [ "$KNAME" == "Linux" ]; then
echo "Configuring for Linux environment"
`dirname $0`/configure.linux $@
`dirname $0`/configure.linux "$@"
exit $?
elif [ "$KNAME" == "Darwin" ]; then
echo "Configuring for Mac OS X environment"
`dirname $0`/configure.osx $@
`dirname $0`/configure.osx "$@"
exit $?
else
echo "Showtime is not supported on this platform"
Expand Down

0 comments on commit 1d09b23

Please sign in to comment.