summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-01-24 10:32:07 +1000
committerAlan Coopersmith <alan.coopersmith@oracle.com>2018-03-09 18:09:02 -0800
commit0fd9c024c1a3d837b460d8b7a978f057867c74cf (patch)
treed359ee63ba9edc56d4aaf8cc9017861e9192c67a
parentd407ce86fa7a1402eb6d12895a5e97a6ffd3478a (diff)
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> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index a0fdb77..9f608bc 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -13,5 +13,5 @@ git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
git config --local format.subjectPrefix "PATCH app/xmore"
if test -z "$NOCONFIGURE"; then
- $srcdir/configure "$@"
+ exec $srcdir/configure "$@"
fi