Do not configure if NOCONFIGURE is set

This commit is contained in:
Lucas De Marchi 2011-11-24 13:29:44 -02:00
parent e7d903696a
commit c931d00bf0

View File

@ -22,4 +22,6 @@ args="--prefix=/usr \
--sysconfdir=/etc \ --sysconfdir=/etc \
--libdir=$(libdir /usr/lib)" --libdir=$(libdir /usr/lib)"
./configure $args CFLAGS="${MYCFLAGS} ${CFLAGS}" $@ if [ -z "$NOCONFIGURE" ]; then
./configure $args CFLAGS="${MYCFLAGS} ${CFLAGS}" $@
fi