X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=autogen.sh;h=c7467f164c4404fc46429eaa5116bb9ba315c69d;hb=5b3774ace991a396752ff0a846fdfb5c38424551;hp=c95132efc7cba2869aa44bf4a2e2a6ffc9964f87;hpb=522be162b274897f9cb9d682312b150b27daa6ff;p=platform%2Fupstream%2Flibxkbcommon.git diff --git a/autogen.sh b/autogen.sh index c95132e..c7467f1 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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