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 12:25:38 +1000 |
commit | c5cc6e0ff2d60133a4b7560df67607ceeb9d55a6 (patch) | |
tree | 800e20950a84f2df3671e6f1d73ae6fb28ab2e93 | |
parent | a4f82f917a9b0802b70cd80c21d2e53688e2b9b3 (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
@@ -11,5 +11,5 @@ autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? if test -z "$NOCONFIGURE"; then - $srcdir/configure "$@" + exec $srcdir/configure "$@" fi |