aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-29 15:28:53 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-29 15:28:53 +0000
commitfc7c4d6157fedcc4c4cf8618f80930d921a432b9 (patch)
tree69951430d61407c31a233dc0c8b9118b903412fd
parent4d17d6876e4b2f08380812c4ec113073b0a14639 (diff)
Ken Hirsch says he basicly needs all 'mv' to be 'mv -f' for configure to
run in a sane manner on his MPE/iX operating system.
-rwxr-xr-xbuildconf2
1 files changed, 2 insertions, 0 deletions
diff --git a/buildconf b/buildconf
index d96ae9606..7b8292d56 100755
--- a/buildconf
+++ b/buildconf
@@ -129,6 +129,8 @@ echo "buildconf: running libtoolize"
${LIBTOOLIZE:-libtoolize} --copy --automake || die "The command '${LIBTOOLIZE:-libtoolize} --copy --automake' failed"
echo "buildconf: running aclocal"
${ACLOCAL:-aclocal} || die "The command '${AUTOHEADER:-aclocal}' 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"
echo "buildconf: running autoconf"