Skip to content

Commit 7d89eb4

Browse files
cgwalterswhot
authored andcommitted
autogen.sh: Honor NOCONFIGURE=1
(Also while we have the patient open, use exec instead of hanging around uselessly in waitpid) http://people.gnome.org/~walters/docs/build-api.txt Reviewed-by: Adam Jackson <[email protected]> Signed-off-by: Colin Walters <[email protected]> Signed-off-by: Peter Hutterer <[email protected]>
1 parent c0a752d commit 7d89eb4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

autogen.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ cd $srcdir
99
autoreconf --force -v --install || exit 1
1010
cd $ORIGDIR || exit $?
1111

12-
$srcdir/configure "$@"
12+
if test -z "$NOCONFIGURE"; then
13+
exec $srcdir/configure "$@"
14+
fi

0 commit comments

Comments
 (0)