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:35:36 -0700
commit5d1420e55b1dc113c999d50ac4bc97e16124ac61 (patch)
tree87c7eea349089dbe6ff8db1f21a3aef8b3ea2a8a
parentafb9524f8b1f582a58071dc6b45b61a2538171f0 (diff)
downloadxcb-pthread-stubs-5d1420e55b1dc113c999d50ac4bc97e16124ac61.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> 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 f9b61bb..0fb48f8 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