diff options
author | Stig S. Bakken <stig@php.net> | 1999-07-22 20:20:11 +0000 |
---|---|---|
committer | Stig S. Bakken <stig@php.net> | 1999-07-22 20:20:11 +0000 |
commit | f5bfd16b0b00b60081630afde2f529bf3af4c83a (patch) | |
tree | 9cbe27d3bd6f044ee87c0e4c97abc67f6c2e0e7a /TSRM | |
parent | c640f3d8c8ed495732aa30203901a45835c347cc (diff) | |
download | php-git-f5bfd16b0b00b60081630afde2f529bf3af4c83a.tar.gz |
identify ourselves
Diffstat (limited to 'TSRM')
-rwxr-xr-x | TSRM/buildconf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TSRM/buildconf b/TSRM/buildconf index 3a896bcb1a..deb6aedb79 100755 --- a/TSRM/buildconf +++ b/TSRM/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 ${1}aclocal.m4 + echo "buildconf: keeping ${1}aclocal.m4" mv aclocal.m4.old aclocal.m4 else - echo created or modified ${1}aclocal.m4 + echo "buildconf: 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 ${1}configure + echo "buildconf: keeping ${1}configure" mv configure.old configure else - echo created or modified ${1}configure + echo "buildconf: created or modified ${1}configure" fi |