packing: Bump up to 1.3.1
[platform/upstream/libxkbcommon.git] / autogen.sh
index 904cd67..c7467f1 100755 (executable)
@@ -1,12 +1,14 @@
-#! /bin/sh
+#!/bin/sh -e
 
-srcdir=`dirname $0`
+srcdir=`dirname "$0"`
 test -z "$srcdir" && srcdir=.
 
 ORIGDIR=`pwd`
-cd $srcdir
+cd "$srcdir"
 
-autoreconf -v --install || exit 1
-cd $ORIGDIR || exit $?
+autoreconf --verbose --install --force --warnings=all
+cd "$ORIGDIR"
 
-$srcdir/configure --enable-maintainer-mode "$@"
+if test -z "$NOCONFIGURE"; then
+    exec "$srcdir/configure" "$@"
+fi