summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2013-01-03 10:22:45 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2013-01-03 10:22:45 +1000
commit00221200c3208b8582e2947b20ab51690f5934b9 (patch)
tree70bb2b94678d7d1709f616c63f044e6d2034be34
parent0db8b0ec59f9b4cb736a0bb5e06c87397b98468d (diff)
Run configure during autogen
All other xorg projects run configure, let's make this one comply with that. Support NOCONFIGURE. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rwxr-xr-xautogen.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index a08311b..fd9c59a 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,3 +9,6 @@ cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
+if test -z "$NOCONFIGURE"; then
+ exec $srcdir/configure "$@"
+fi