summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2011-12-03 02:31:01 -0200
committerLucas De Marchi <lucas.demarchi@profusion.mobi>2011-12-03 02:32:36 -0200
commita66a0c37afee0a577ff2e8b1d6c77610dc4ce02b (patch)
tree3ffb367f32f30dfa1d9fefdfcd28250fb6000904 /autogen.sh
parent85ece2042f18fd501c82587a5e46933c455f0a36 (diff)
downloadkmod-a66a0c37afee0a577ff2e8b1d6c77610dc4ce02b.tar.gz
kmod-a66a0c37afee0a577ff2e8b1d6c77610dc4ce02b.tar.bz2
kmod-a66a0c37afee0a577ff2e8b1d6c77610dc4ce02b.zip
autogen: use "$@" and exec last program
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 3a339fb..bfb165c 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -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