]> granicus.if.org Git - php/commitdiff
state which aclocal.m4 and configure files are created
authorStig S. Bakken <stig@php.net>
Wed, 21 Apr 1999 20:33:33 +0000 (20:33 +0000)
committerStig S. Bakken <stig@php.net>
Wed, 21 Apr 1999 20:33:33 +0000 (20:33 +0000)
Zend/buildconf

index 5a6158d4c87d6237894604bf1d435e6925de31d1..3a896bcb1ace50cb4876093135beed1b3954ccbe 100755 (executable)
@@ -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