kmscon/autogen.sh
David Herrmann 23f51fc2a7 build: run ./configure in ./autogen.sh only if NOCONFIGURE is not set
In some circumstances it might not be desirable to run ./configure
together with ./autogen.sh. You can now set NOCONFIGURE=1 to avoid this.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
2012-10-11 10:38:21 +02:00

9 lines
128 B
Bash
Executable File

#!/bin/sh
set -e
mkdir -p m4
autoreconf -i
if test ! "x$NOCONFIGURE" = "x1" ; then
exec ./configure --enable-debug "$@"
fi