build: run ./configure in ./autogen.sh only if NOCONFIGURE is not set
[platform/upstream/kmscon.git] / autogen.sh
1 #!/bin/sh
2 set -e
3 mkdir -p m4
4 autoreconf -i
5
6 if test ! "x$NOCONFIGURE" = "x1" ; then
7     exec ./configure --enable-debug "$@"
8 fi