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>2022-07-24 14:56:23 -0700
commit1e6c25d863b16be74e8c174192ace16fb66f5fc6 (patch)
tree0b9548fc5907bf315069e8fe65d08b359b0b9951
parent13c89f88d92cbe727f7b77b9f8b402e6b3c5b3fa (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 abdac4b..ae44a9a 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 util/gccmakedep"
if test -z "$NOCONFIGURE"; then
- $srcdir/configure "$@"
+ exec $srcdir/configure "$@"
fi