summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-01-24 10:32:07 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-01-24 10:37:19 +1000
commit8e883a747e6d937a0e6a1a87b23ea8e2c4a8051e (patch)
tree87daf91fd181ba3acf9564b6404a5b318cb5632e
parentbd3d751e1eb17efb39f65093271bb4ac071aa9e0 (diff)
downloadxorg-proto-glproto-8e883a747e6d937a0e6a1a87b23ea8e2c4a8051e.tar.gz
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>
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
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