diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-18 09:02:38 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-18 09:02:38 +0000 |
commit | aced2904ffa1d162b00389b10b56e8137c685363 (patch) | |
tree | 5d5e8d3f537b2dad0b591a774b6c5f796da0cb94 /buildconf | |
parent | 17eb1fca7c4062db6a836291aec7fc925e4e7c8b (diff) | |
download | curl-aced2904ffa1d162b00389b10b56e8137c685363.tar.gz |
simplified the die-line when aclocal fails, the previous one confused
the netbsd shell
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |