diff options
author | Sascha Schumann <sas@php.net> | 1999-10-05 11:33:00 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-10-05 11:33:00 +0000 |
commit | 1a4f22e4ed564d175724f177f3b06f3d4f5cdc87 (patch) | |
tree | b9534e5a64b6acf82c43d90aa9b20435756f274e /buildconf | |
parent | 1877b0779cea66a22a114bb6119cf4541f868bdd (diff) | |
download | php-git-1a4f22e4ed564d175724f177f3b06f3d4f5cdc87.tar.gz |
automake does not find all subdirectories automatically.
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -137,7 +137,10 @@ fi autoheader # suppress stupid automake warning -automake --add-missing --include-deps $automake_flags 2>&1 | grep -v \$PHP_OUTPUT_FILES >&2 +files=`find . -name Makefile.am | sed 's#\.am##' | tr '\n' ' '` + + +automake --add-missing --include-deps $automake_flags $files 2>&1 | grep -v \$PHP_OUTPUT_FILES >&2 mv configure configure.old 2>/dev/null |