diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,9 +6,9 @@ test -z "$srcdir" && srcdir=. ORIGDIR=`pwd` cd "$srcdir" -autoreconf -v --install || exit 1 +autoreconf -v --install || exit $? cd "$ORIGDIR" || exit $? if test -z "$NOCONFIGURE"; then - "$srcdir/configure" "$@" + exec "$srcdir/configure" "$@" fi |