From 6ef816b4f5f17ef7d4bb90fca25b26205124fc78 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 26 Jan 2017 14:31:19 +1000 Subject: [PATCH] autogen.sh: exec the configure script No point in waiting for it here, might as well pass the baton. Signed-off-by: Peter Hutterer --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index f9fc247e..8b8a3ab8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -10,4 +10,4 @@ test -n "$srcdir" || srcdir=. git config --local --get format.subjectPrefix >/dev/null 2>&1 || git config --local format.subjectPrefix "PATCH libinput" -test -n "$NOCONFIGURE" || "$srcdir/configure" "$@" +test -n "$NOCONFIGURE" || exec "$srcdir/configure" "$@"