From aced2904ffa1d162b00389b10b56e8137c685363 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 18 May 2004 09:02:38 +0000 Subject: [PATCH] simplified the die-line when aclocal fails, the previous one confused the netbsd shell --- buildconf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildconf b/buildconf index e067d90e4..7459494dd 100755 --- a/buildconf +++ b/buildconf @@ -159,7 +159,7 @@ fi echo "buildconf: running libtoolize" ${LIBTOOLIZE:-libtoolize} --copy --automake --force || die "The command '${LIBTOOLIZE:-libtoolize} --copy --automake --force' failed" echo "buildconf: running aclocal" -${ACLOCAL:-aclocal} $ACLOCAL_FLAGS || die "The command '${ACLOCAL:-aclocal}${ACLOCAL_FLAGS:+" $ACLOCAL_FLAGS"}' failed" +${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"