From 80f53108652822ecec30fb4793b70957f07ead22 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 13 Mar 2017 14:01:31 +0000 Subject: autogen.sh: use exec to invoke configure There's no point in hanging in waitpid. Just exec the configure script. Signed-off-by: Emil Velikov --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index c896097..54627d4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -10,5 +10,5 @@ autoreconf --force --verbose --install || exit 1 cd "$ORIGDIR" || exit $? if test -z "$NOCONFIGURE"; then - "$srcdir"/configure "$@" + exec "$srcdir"/configure "$@" fi -- cgit v1.2.3