summaryrefslogtreecommitdiff
path: root/Zend/buildconf
diff options
context:
space:
mode:
authorStig S. Bakken <stig@php.net>1999-04-21 20:33:33 +0000
committerStig S. Bakken <stig@php.net>1999-04-21 20:33:33 +0000
commitd9144155f58bd6ba51c9d837513c316a623d04b1 (patch)
tree752d015d71b2316839c17b861d4197b692627bce /Zend/buildconf
parent72c2d04d728db19846bb98de7430a5bc80617550 (diff)
downloadphp-git-d9144155f58bd6ba51c9d837513c316a623d04b1.tar.gz
state which aclocal.m4 and configure files are created
Diffstat (limited to 'Zend/buildconf')
-rwxr-xr-xZend/buildconf8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/buildconf b/Zend/buildconf
index 5a6158d4c8..3a896bcb1a 100755
--- a/Zend/buildconf
+++ b/Zend/buildconf
@@ -3,10 +3,10 @@
mv aclocal.m4 aclocal.m4.old 2>/dev/null
aclocal
if cmp aclocal.m4.old aclocal.m4 > /dev/null 2>&1; then
- echo keeping aclocal.m4
+ echo keeping ${1}aclocal.m4
mv aclocal.m4.old aclocal.m4
else
- echo created or modified aclocal.m4
+ echo created or modified ${1}aclocal.m4
fi
autoheader
@@ -16,9 +16,9 @@ automake --add-missing --include-deps
mv configure configure.old 2>/dev/null
autoconf
if cmp configure.old configure > /dev/null 2>&1; then
- echo keeping configure
+ echo keeping ${1}configure
mv configure.old configure
else
- echo created or modified configure
+ echo created or modified ${1}configure
fi