Skip to content

Commit

Permalink
Quote the $@ variable passed to ./configure
Browse files Browse the repository at this point in the history
Allows build.sh to be invoked with complex arguments to be passed to
configure script e.g.
- ./build.sh CFLAGS='-O3 -fomit-frame-pointer -s' CC=clang
  • Loading branch information
Neil McPhail committed Oct 28, 2013
1 parent 04ec543 commit d792566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Expand Up @@ -17,5 +17,5 @@ aclocal $AC_SEARCH_OPTS && \
autoconf && \
autoheader && \
automake --add-missing && \
./configure $@ && \
./configure "$@" && \
make

0 comments on commit d792566

Please sign in to comment.