summaryrefslogtreecommitdiff
path: root/TSRM/buildconf
diff options
context:
space:
mode:
Diffstat (limited to 'TSRM/buildconf')
-rwxr-xr-xTSRM/buildconf8
1 files changed, 4 insertions, 4 deletions
diff --git a/TSRM/buildconf b/TSRM/buildconf
index deb6aedb79..3a896bcb1a 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 "buildconf: keeping ${1}aclocal.m4"
+ echo keeping ${1}aclocal.m4
mv aclocal.m4.old aclocal.m4
else
- echo "buildconf: created or modified ${1}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 "buildconf: keeping ${1}configure"
+ echo keeping ${1}configure
mv configure.old configure
else
- echo "buildconf: created or modified ${1}configure"
+ echo created or modified ${1}configure
fi