From: Alexandre Duret-Lutz Date: Tue, 11 Feb 2003 12:37:00 +0000 (+0000) Subject: always use cp -rf instead of ln -s, as suggested by Richard Dawe X-Git-Tag: Release-1-7-2b~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8011789f2b818d66dcb5362a10cc7c6715fe2c93;p=thirdparty%2Fautomake.git always use cp -rf instead of ln -s, as suggested by Richard Dawe --- 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" \