From: Peter Hutterer Date: Tue, 24 Jan 2017 00:32:07 +0000 (+1000) Subject: autogen.sh: use exec instead of waiting for configure to finish X-Git-Url: https://diplodocus.org/git/xorg-xinput/commitdiff_plain/fb9cb61708c2cbe832824575daef27ea1c51ab38?ds=sidebyside;hp=d63b2f2d36289396b097bf9b35fc8969bf8f31c4 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 Reviewed-by: Emil Velikov --- diff --git a/autogen.sh b/autogen.sh index fc34bd5..fd9c59a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -10,5 +10,5 @@ autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? if test -z "$NOCONFIGURE"; then - $srcdir/configure "$@" + exec $srcdir/configure "$@" fi