aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-05-18 10:55:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-05-18 10:55:40 +0000
commit29ed6d24bfaa7664cb91852f8270df854440d3af (patch)
tree0d1cd494c2434de2c8852cc30bf5fcdf92ca1d3f /buildconf
parente2c5c208962608726820c9bd5b2d8eb60e7775a1 (diff)
simplified all die messages
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf10
1 files changed, 5 insertions, 5 deletions
diff --git a/buildconf b/buildconf
index b79871035..238a3417c 100755
--- a/buildconf
+++ b/buildconf
@@ -157,22 +157,22 @@ fi
# run the correct scripts now
echo "buildconf: running libtoolize"
-${LIBTOOLIZE:-libtoolize} --copy --automake --force || die "The command '${LIBTOOLIZE:-libtoolize} --copy --automake --force' failed"
+${LIBTOOLIZE:-libtoolize} --copy --automake --force || die "The libtool command failed"
echo "buildconf: running aclocal"
${ACLOCAL:-aclocal} $ACLOCAL_FLAGS || die "The aclocal command line failed"
echo "buildconf: running aclocal hack to convert all mv to mv -f"
perl -i.bak -pe 's/\bmv +([^-\s])/mv -f $1/g' aclocal.m4
echo "buildconf: running autoheader"
-${AUTOHEADER:-autoheader} || die "The command '${AUTOHEADER:-autoheader}' failed"
+${AUTOHEADER:-autoheader} || die "The autoheader command failed"
echo "buildconf: running autoconf"
-${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed"
+${AUTOCONF:-autoconf} || die "The autoconf command failed"
if test -d ares; then
cd ares
echo "buildconf: running aclocal in the ares directory"
- ${ACLOCAL:-aclocal} $ACLOCAL_FLAGS || die "The command '${ACLOCAL:-aclocal}${ACLOCAL_FLAGS:+" $ACLOCAL_FLAGS"}' failed"
+ ${ACLOCAL:-aclocal} $ACLOCAL_FLAGS || die "The ares aclocal command failed"
echo "buildconf: running autoconf in the ares directory"
- ${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed"
+ ${AUTOCONF:-autoconf} || die "The ares autoconf command failed"
cd ..
fi