summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuildconf5
1 files changed, 4 insertions, 1 deletions
diff --git a/buildconf b/buildconf
index c398bdd4e5..c584867d2e 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