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