summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@redhat.com>2010-11-24 17:39:46 -0500
committerRob Crittenden <rcritten@redhat.com>2010-11-29 11:39:55 -0500
commitb683c7261bcadc6899168d7cff8bd218a3501ba6 (patch)
treef9731ca0324ed33135b97b717458f734cc9fe6af /autogen.sh
parent5bfb1a004a9c6828c5b6a002d15f7eeb2ce14c9a (diff)
downloadfreeipa-b683c7261bcadc6899168d7cff8bd218a3501ba6.tar.gz
freeipa-b683c7261bcadc6899168d7cff8bd218a3501ba6.tar.xz
freeipa-b683c7261bcadc6899168d7cff8bd218a3501ba6.zip
build tweaks - use automake's foreign mode, avoid creating empty files to satisfy gnu mode - run autoreconf -f to ensure that everything matches
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh13
1 files changed, 1 insertions, 12 deletions
diff --git a/autogen.sh b/autogen.sh
index 99b4805d..5eab4a49 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+"$@"}