From b683c7261bcadc6899168d7cff8bd218a3501ba6 Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Wed, 24 Nov 2010 17:39:46 -0500 Subject: build tweaks - use automake's foreign mode, avoid creating empty files to satisfy gnu mode - run autoreconf -f to ensure that everything matches --- autogen.sh | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 99b4805d0..5eab4a499 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,14 +1,3 @@ #!/bin/sh - -# automake demands these files exist when run in gnu mode which is the default, -# automake can be run in foreign mode to avoid failing on the absence of these -# files, but unfortunately there is no way to pass the --foreign flag to -# automake when run from autoreconf. -for f in NEWS README AUTHORS ChangeLog; do - if [ ! -e $f ]; then - touch $f - fi -done - -autoreconf -i +autoreconf -i -f ./configure ${1+"$@"} -- cgit