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>
This commit is contained in:
Peter Hutterer 2017-01-24 10:32:07 +10:00
parent 4a6df6b4ee
commit 049573b57a
1 changed files with 1 additions and 1 deletions

View File

@ -10,5 +10,5 @@ autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@"
exec $srcdir/configure "$@"
fi