From 1eca726f6526ffe88742d99b0c9edeeec8e8d826 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 25 Jul 2007 18:45:01 +0200 Subject: [PATCH] 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 --- autogen.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autogen.sh b/autogen.sh index 3451b953f..2354461fc 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