kdbus: add memfd_create() syscall number for aarch64
[platform/upstream/dbus.git] / autogen.sh
index f722e94..6de735f 100755 (executable)
@@ -15,8 +15,8 @@ DIE=0
 
 if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
     echo "Activating pre-commit hook."
-    cp -av .git/hooks/pre-commit.sample .git/hooks/pre-commit
-    chmod -c +x  .git/hooks/pre-commit
+    cp .git/hooks/pre-commit.sample .git/hooks/pre-commit
+    chmod +x .git/hooks/pre-commit
 fi
 
 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
@@ -48,7 +48,7 @@ fi
 }
 
 LIBTOOLIZE=`which libtoolize`
-if ! test -f $LIBTOOLIZE; then
+if ! test -f "$LIBTOOLIZE"; then
        LIBTOOLIZE=`which glibtoolize`
 fi
 
@@ -81,12 +81,16 @@ $ACLOCAL -I m4 $ACLOCAL_FLAGS
 (autoheader --version)  < /dev/null > /dev/null 2>&1 && autoheader
 
 $AUTOMAKE -a $am_opt
-autoconf || echo "autoconf failed - version 2.5x is probably required"
+if ! autoconf; then
+  echo "autoconf failed - version 2.5x is probably required" >&2
+  exit 1
+fi
 
 cd $ORIGDIR
 
-run_configure=true
-for arg in $*; do
+if test x"$NOCONFIGURE" = x; then
+  run_configure=true
+  for arg in $*; do
     case $arg in 
         --no-configure)
             run_configure=false
@@ -94,14 +98,11 @@ for arg in $*; do
         *)
             ;;
     esac
-done
-
-if $run_configure; then
-    $srcdir/configure --enable-maintainer-mode --config-cache "$@"
-    echo 
-    echo "Now type 'make' to compile $PROJECT."
+  done
 else
-    echo
-    echo "Now run 'configure' and 'make' to compile $PROJECT."
+  run_configure=false
 fi
 
+if $run_configure; then
+    $srcdir/configure --enable-developer --config-cache "$@"
+fi