Skip to content

Commit 0ac138f

Browse files
moi15moidwbuiten
authored andcommitted
[autogen.sh] Add NOCONFIGURE
Don't force the user to run configure.
1 parent 5c72e5a commit 0ac138f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

autogen.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22
mkdir -p src/config
33
echo Running autoreconf...
44
autoreconf -ivf
5-
echo Running configure...
6-
./configure "$@"
5+
if [ -z "$NOCONFIGURE" ]; then
6+
echo Running configure...
7+
./configure "$@"
8+
fi

0 commit comments

Comments
 (0)