summaryrefslogtreecommitdiff
path: root/autogen.sh
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-26 11:59:25 +1000
commit644d7c595ba29fb368666fb497e1e14a92a65a77 (patch)
treeb883026a9646c6c931411653aa8f7223e5fe76d5 /autogen.sh
parent1fab5e81fd761f628fb68d22934615536dbd0220 (diff)
downloadxorg-lib-libXpm-644d7c595ba29fb368666fb497e1e14a92a65a77.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> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'autogen.sh')
-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