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
commit3609218e2f00d79338007c2bcfb9002ae4908486 (patch)
treefaec5c4a1b394832443a0b5e8fe478d74d90f372
parentf900146aa6d6b67ad5e15436201ce81a874a29a7 (diff)
downloadxorg-proto-fontsproto-3609218e2f00d79338007c2bcfb9002ae4908486.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