summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-10-05 10:23:48 +0000
committerSascha Schumann <sas@php.net>1999-10-05 10:23:48 +0000
commite74b9854325380abde64e694fcdec308124a7e6d (patch)
tree138439b918bfb7dde21149859e3f459baef4ae88 /buildconf
parent2e3223446150bb452e9b25e74d63e67d9144fc9b (diff)
downloadphp-git-e74b9854325380abde64e694fcdec308124a7e6d.tar.gz
100% speedup in buildconf.
We have a top-level Makefile.am, so find becomes superflicious
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildconf b/buildconf
index 4b573b9977..c398bdd4e5 100755
--- a/buildconf
+++ b/buildconf
@@ -136,8 +136,8 @@ fi
autoheader
-find . -name Makefile.am -print|sed -e 's/\.am//' | \
- xargs automake --add-missing --include-deps $automake_flags
+# suppress stupid automake warning
+automake --add-missing --include-deps $automake_flags 2>&1 | grep -v \$PHP_OUTPUT_FILES >&2
mv configure configure.old 2>/dev/null