diff options
author | Rob Clark <rob.clark@linaro.org> | 2012-05-10 20:36:07 -0500 |
---|---|---|
committer | Rob Clark <rob.clark@linaro.org> | 2012-05-10 20:36:07 -0500 |
commit | 26fee2e487d59eefa475806f7fb5a76a139398c6 (patch) | |
tree | 6e4e50c5c364b2281b3669590813c72297bc318a | |
parent | da7ba7295aecedea6c0b89cd747a65b9d7dccb65 (diff) |
add NOCONFIGURE support to autogen.sh
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -9,4 +9,10 @@ cd $srcdir autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? +test -n "$NOCONFIGURE" && { + echo "skipping configure stage as requested." + echo "autogen.sh done." + exit 0 +} + $srcdir/configure --enable-maintainer-mode "$@" |