diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2017-01-24 10:32:07 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2017-01-26 10:13:54 +1000 |
commit | 29e2bd5a257a4f60c1729ab823ed990597294ffc (patch) | |
tree | 260e274cf1921d03b17c6272c765f9875b64f351 | |
parent | 6d5aa481669cdbf2f0cb83bb0b8f142ba94307ae (diff) |
autogen.sh: use exec instead of waiting for configure to finish
Syncs the invocation of configure with the one from the server.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,5 +10,5 @@ autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? if test -z "$NOCONFIGURE"; then - $srcdir/configure "$@" + exec $srcdir/configure "$@" fi |