Merge pull request #37 from cgwalters/master

autogen.sh: Add /bin/sh interpreter, honor NOCONFIGURE=1 …
This commit is contained in:
Eric Haszlakiewicz
2012-07-29 09:46:22 -07:00

View File

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