From 1a4f22e4ed564d175724f177f3b06f3d4f5cdc87 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Tue, 5 Oct 1999 11:33:00 +0000 Subject: [PATCH] automake does not find all subdirectories automatically. --- buildconf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/buildconf b/buildconf index c398bdd4e5339..c584867d2ecdd 100755 --- a/buildconf +++ b/buildconf @@ -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