diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2017-01-24 10:32:07 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2017-01-26 10:13:53 +1000 |
commit | 37d922c37a4de2ab29bdd13d55eabd369f0616dd (patch) | |
tree | e213036ba089b1f345c331ff5191aa797fae8fd9 | |
parent | 2f5eae70cd2e9c1e09dcbd8a2a58eaf58207fe00 (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>
-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 |