]> diplodocus.org Git - xorg-xinput/commitdiff
autogen.sh: use exec instead of waiting for configure to finish
authorPeter Hutterer <peter.hutterer@who-t.net>
Tue, 24 Jan 2017 00:32:07 +0000 (10:32 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Thu, 26 Jan 2017 00:38:29 +0000 (10:38 +1000)
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>
autogen.sh

index fc34bd55c443ebf0e4feded3f6bd85d390c3d4c6..fd9c59a14fa8ceec02fa12e30dc76f827835eb39 100755 (executable)
@@ -10,5 +10,5 @@ autoreconf -v --install || exit 1
 cd $ORIGDIR || exit $?
 
 if test -z "$NOCONFIGURE"; then
-    $srcdir/configure "$@"
+    exec $srcdir/configure "$@"
 fi