diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-06-07 19:49:16 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-06-15 20:35:28 -0400 |
commit | 563befdba68316642d4f0a5e7a96b9c28a743570 (patch) | |
tree | 609f6ca87e61bc588ebdfba444add094c4d0f5cf /bootstrap-configure | |
parent | a4fb97a71e336394e1a497c2b75ea42907937d1e (diff) | |
download | kmod-563befdba68316642d4f0a5e7a96b9c28a743570.tar.gz kmod-563befdba68316642d4f0a5e7a96b9c28a743570.tar.bz2 kmod-563befdba68316642d4f0a5e7a96b9c28a743570.zip |
bootstrap-configure: quote command line arg expansion
Diffstat (limited to 'bootstrap-configure')
-rwxr-xr-x | bootstrap-configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap-configure b/bootstrap-configure index 2bcd788..857745e 100755 --- a/bootstrap-configure +++ b/bootstrap-configure @@ -1,4 +1,4 @@ #!/bin/sh . ./bootstrap && \ - exec ./configure CFLAGS="-g -O2 -Werror" $args $hackargs $* + exec ./configure CFLAGS="-g -O2 -Werror" $args $hackargs "$@" |