summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Varshavchik2018-05-14 19:10:05 -0400
committerGitHub2018-05-14 19:10:05 -0400
commitf4569d8153da77b7ad87d98a5818170acea094e6 (patch)
treefe76f1905cab57317b7c42f43c7afe5748456efb
parentcc51ba857ab9f72a2426b1339ac34c432346c8d6 (diff)
parentf25b8077aff5a89bfb467401f97323e0792f2efc (diff)
downloadcourier-libs-f4569d8153da77b7ad87d98a5818170acea094e6.tar.bz2
Merge pull request #7 from mumumu/fix_autobloat_to_run_completely
fixed autobloat to run INSTALLME script completely
-rw-r--r--common/autobloat7
1 files changed, 6 insertions, 1 deletions
diff --git a/common/autobloat b/common/autobloat
index e04943e..c30a152 100644
--- a/common/autobloat
+++ b/common/autobloat
@@ -34,7 +34,7 @@ echo `pwd`:
fi
fi
aclocal || exit 1
- if grep -q AM_CONFIG_HEADER configure.ac
+ if grep -q [AM\|AC]_CONFIG_HEADER configure.ac
then
autoheader || exit 1
fi
@@ -42,6 +42,11 @@ echo `pwd`:
then
sysconftoolize || exit 1
fi
+ for gitfile in $(find . -maxdepth 1 -name "*.in.git" -type f)
+ do
+ gitfile_dist=$(basename $gitfile ".git")
+ cp $gitfile $gitfile_dist
+ done
if test -f AUTHORS -a -f NEWS -a -f README
then
automake --add-missing || exit 1