Files
json-c/autogen.sh
Colin Walters 6d9437725a autogen.sh: Add /bin/sh interpreter, honor NOCONFIGURE=1
First, we should be able to execute as "./autogen.sh".  Second,
add support for NOCONFIGURE=1.  For more information,
see http://people.gnome.org/~walters/docs/build-api.txt
2012-07-11 15:45:49 -04:00

6 lines
106 B
Bash
Executable File

#!/bin/sh
autoreconf -v --install || exit 1
if test -z "$NOCONFIGURE"; then
exec ./configure "$@"
fi