diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2011-12-03 02:31:01 -0200 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2011-12-03 02:32:36 -0200 |
commit | a66a0c37afee0a577ff2e8b1d6c77610dc4ce02b (patch) | |
tree | 3ffb367f32f30dfa1d9fefdfcd28250fb6000904 /autogen.sh | |
parent | 85ece2042f18fd501c82587a5e46933c455f0a36 (diff) | |
download | kmod-a66a0c37afee0a577ff2e8b1d6c77610dc4ce02b.tar.gz kmod-a66a0c37afee0a577ff2e8b1d6c77610dc4ce02b.tar.bz2 kmod-a66a0c37afee0a577ff2e8b1d6c77610dc4ce02b.zip |
autogen: use "$@" and exec last program
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,5 +23,5 @@ args="--prefix=/usr \ --libdir=$(libdir /usr/lib)" if [ -z "$NOCONFIGURE" ]; then - ./configure $args CFLAGS="${MYCFLAGS} ${CFLAGS}" $@ + exec ./configure $args CFLAGS="${MYCFLAGS} ${CFLAGS}" "$@" fi |