diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2017-01-24 10:32:07 +1000 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-07-24 11:22:22 -0700 |
commit | 1ccb7b4b46bdadd872bd7f5b870f0ab2fd929927 (patch) | |
tree | 5d7294dd666f75bcf3fc598b93fb1bb47234d271 | |
parent | df78cd556e309391b8855eb746c1fc55502695a8 (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
@@ -10,5 +10,5 @@ autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? if test -z "$NOCONFIGURE"; then - $srcdir/configure "$@" + exec $srcdir/configure "$@" fi |