From: Karel Zak Date: Wed, 25 Jul 2007 16:45:01 +0000 (+0200) Subject: build-sys: add ${AC,AP,AM,AH}_OPTS to autogen.sh X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1eca726f6526ffe88742d99b0c9edeeec8e8d826;p=util-linux build-sys: add ${AC,AP,AM,AH}_OPTS to autogen.sh With this patch, you can define autotool options when you need to generate build-system. For example: $ AM_OPTS="--copy" ./autogen.sh Signed-off-by: Karel Zak --- diff --git a/autogen.sh b/autogen.sh index 3451b953..2354461f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -54,11 +54,11 @@ test -f mount/mount.c || { } set -e -autopoint --force -aclocal -I m4 -autoconf -autoheader -automake --add-missing +autopoint --force $AP_OPTS +aclocal -I m4 $AL_OPTS +autoconf $AC_OPTS +autoheader $AH_OPTS +automake --add-missing $AM_OPTS cd $THEDIR