From: Alexandre Duret-Lutz Date: Mon, 22 Mar 2004 20:29:22 +0000 (+0000) Subject: * doc/automake.texi (Default _SOURCES): Typo. X-Git-Tag: Release-1-8b~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4921bee99440fc7d5688fbcfde265951400db4a5;p=thirdparty%2Fautomake.git * doc/automake.texi (Default _SOURCES): Typo. (true): Correct _'s placement in example. Report from Stepan Kasal. --- diff --git a/ChangeLog b/ChangeLog index 84fb98672..38081dbae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-03-22 Alexandre Duret-Lutz + + * doc/automake.texi (Default _SOURCES): Typo. + (true): Correct _'s placement in example. + Report from Stepan Kasal. + 2004-03-19 Alexandre Duret-Lutz Overriding JAVAROOT is legitimate, do not warn about it. diff --git a/doc/automake.texi b/doc/automake.texi index cdc620e04..fb96fc1f0 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -982,11 +982,11 @@ is used (@pxref{ANSI}). Supporting de-ANSI-fication requires a little more work: @example -true._o: true._c false.o - $(COMPILE) -DEXIT_CODE=0 -c true.c +true_.o: true_.c false_.o + $(COMPILE) -DEXIT_CODE=0 -c true_.c -false._o: true._c - $(COMPILE) -DEXIT_CODE=1 -c true.c && mv true._o false.o +false_.o: true_.c + $(COMPILE) -DEXIT_CODE=1 -c true_.c && mv true_.o false_.o @end example As it turns out, there is also a much easier way to do this same task. @@ -3353,7 +3353,7 @@ lib_LIBRARIES = libfoo.a sub/libc++.a @file{sub/libc++.c}. (In older versions @file{sub/libc++.a} would be built from @file{sub_libc___a.c}, i.e., the default source was the canonized name of the target, with @file{.c} appended. -Be believe the new behavior is more sensible, but for backward +We believe the new behavior is more sensible, but for backward compatibility automake will use the old name if a file or a rule with that name exist.)