]> sourceware.org Git - automake.git/commitdiff
* doc/automake.texi (Default _SOURCES): Typo.
authorAlexandre Duret-Lutz <adl@gnu.org>
Mon, 22 Mar 2004 20:29:20 +0000 (20:29 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Mon, 22 Mar 2004 20:29:20 +0000 (20:29 +0000)
(true): Correct _'s placement in example.
Report from Stepan Kasal.

ChangeLog
doc/automake.texi

index 84fb986727321b789ccf32ac8402998df2314b53..38081dbae70de56e80bfa30ef756b1a6912f7b7c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-03-22  Alexandre Duret-Lutz  <adl@gnu.org>
+
+       * doc/automake.texi (Default _SOURCES): Typo.
+       (true): Correct _'s placement in example.
+       Report from Stepan Kasal.
+
 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
 
        Overriding JAVAROOT is legitimate, do not warn about it.
index cdc620e04d9920446d4a3ff40d1002b935069c17..fb96fc1f0bb5050659a61f49af34c090f89f967a 100644 (file)
@@ -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.)
 
This page took 0.078248 seconds and 5 git commands to generate.