Skip to content

Commit f5bfd16

Browse files
committed
identify ourselves
1 parent c640f3d commit f5bfd16

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

TSRM/buildconf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
mv aclocal.m4 aclocal.m4.old 2>/dev/null
44
aclocal
55
if cmp aclocal.m4.old aclocal.m4 > /dev/null 2>&1; then
6-
echo keeping ${1}aclocal.m4
6+
echo "buildconf: keeping ${1}aclocal.m4"
77
mv aclocal.m4.old aclocal.m4
88
else
9-
echo created or modified ${1}aclocal.m4
9+
echo "buildconf: created or modified ${1}aclocal.m4"
1010
fi
1111

1212
autoheader
@@ -16,9 +16,9 @@ automake --add-missing --include-deps
1616
mv configure configure.old 2>/dev/null
1717
autoconf
1818
if cmp configure.old configure > /dev/null 2>&1; then
19-
echo keeping ${1}configure
19+
echo "buildconf: keeping ${1}configure"
2020
mv configure.old configure
2121
else
22-
echo created or modified ${1}configure
22+
echo "buildconf: created or modified ${1}configure"
2323
fi
2424

Zend/buildconf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
mv aclocal.m4 aclocal.m4.old 2>/dev/null
44
aclocal
55
if cmp aclocal.m4.old aclocal.m4 > /dev/null 2>&1; then
6-
echo keeping ${1}aclocal.m4
6+
echo "buildconf: keeping ${1}aclocal.m4"
77
mv aclocal.m4.old aclocal.m4
88
else
9-
echo created or modified ${1}aclocal.m4
9+
echo "buildconf: created or modified ${1}aclocal.m4"
1010
fi
1111

1212
autoheader
@@ -16,9 +16,9 @@ automake --add-missing --include-deps
1616
mv configure configure.old 2>/dev/null
1717
autoconf
1818
if cmp configure.old configure > /dev/null 2>&1; then
19-
echo keeping ${1}configure
19+
echo "buildconf: keeping ${1}configure"
2020
mv configure.old configure
2121
else
22-
echo created or modified ${1}configure
22+
echo "buildconf: created or modified ${1}configure"
2323
fi
2424

0 commit comments

Comments
 (0)