diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2017-01-24 10:32:07 +1000 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2018-03-09 18:09:02 -0800 |
commit | 0fd9c024c1a3d837b460d8b7a978f057867c74cf (patch) | |
tree | d359ee63ba9edc56d4aaf8cc9017861e9192c67a | |
parent | d407ce86fa7a1402eb6d12895a5e97a6ffd3478a (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-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |