diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 00:08:08 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-06-02 00:08:08 -0700 |
commit | 07dd96a8bf5b8cff7a71e3847e843fd005c17b67 (patch) | |
tree | 3e1369da1c178d95067faf572825d6c4af008d10 /autogen.sh | |
parent | ec3086dbd7518e448b8c9d27eaf821fcc71d9d8e (diff) |
autogen.sh: Honor NOCONFIGURE=1
See http://people.gnome.org/~walters/docs/build-api.txt
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -9,5 +9,6 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure "$@" - +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi |