automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: automake 1.7 branch & DJGPP [PATCH]


From: Alexandre Duret-Lutz
Subject: Re: automake 1.7 branch & DJGPP [PATCH]
Date: Tue, 11 Feb 2003 13:39:36 +0100
User-agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i386-pc-linux-gnu)

>>> "Richard" == Richard Dawe <address@hidden> writes:

[...]

 Richard> Unfortunately this won't work either.

 Richard> "ln -s" does special things in DJGPP 2.03. Example:

Sorry I broke your stuff, and thanks for the explanation.

I've installed the following (cp -a is not portable).

--- bootstrap   10 Feb 2003 23:55:08 -0000      1.2.2.3
+++ bootstrap   11 Feb 2003 12:35:51 -0000
@@ -66,10 +66,10 @@
 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 "address@hidden@%$PERL%g" \

-- 
Alexandre Duret-Lutz





reply via email to

[Prev in Thread] Current Thread [Next in Thread]