summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorAlexandre Duret-Lutz <adl@gnu.org>2003-02-11 12:37:00 +0000
committerAlexandre Duret-Lutz <adl@gnu.org>2003-02-11 12:37:00 +0000
commit8011789f2b818d66dcb5362a10cc7c6715fe2c93 (patch)
treec81332395e033d90fd975b30a3ee471a78768021 /bootstrap
parent880b48332d7864ac2a5ac034b9556807c9106428 (diff)
downloadautomake-8011789f2b818d66dcb5362a10cc7c6715fe2c93.tar.gz
always use cp -rf instead of ln -s, as suggested by Richard Dawe
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap8
1 files changed, 4 insertions, 4 deletions
diff --git a/bootstrap b/bootstrap
index 4c695edd1..3d6267e48 100755
--- a/bootstrap
+++ b/bootstrap
@@ -75,10 +75,10 @@ fi
rm -rf aclocal-$APIVERSION
mkdir aclocal-$APIVERSION
rm -rf automake-$APIVERSION
-ln -s lib automake-$APIVERSION >/dev/null 2>&1 || {
- mkdir automake-$APIVERSION
- cp -arf lib/* automake-$APIVERSION
-}
+# Can't use `ln -s lib automake-$APIVERSION',
+# that would create a lib.exe stub under DJGPP 2.03.
+mkdir automake-$APIVERSION
+cp -rf lib/* automake-$APIVERSION
# Create temporary replacement for aclocal
sed -e "s%@PERL@%$PERL%g" \