diff options
| author | Yoshinari Takaoka | 2018-05-15 02:09:03 +0900 | 
|---|---|---|
| committer | Yoshinari Takaoka | 2018-05-15 02:09:03 +0900 | 
| commit | f25b8077aff5a89bfb467401f97323e0792f2efc (patch) | |
| tree | fe76f1905cab57317b7c42f43c7afe5748456efb /common | |
| parent | cc51ba857ab9f72a2426b1339ac34c432346c8d6 (diff) | |
| download | courier-libs-f25b8077aff5a89bfb467401f97323e0792f2efc.tar.bz2 | |
fixed to run completely
Diffstat (limited to 'common')
| -rw-r--r-- | common/autobloat | 7 | 
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 | 
