]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* doc/autoconf.texi (Limitations of Make): Clean up markup.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 29 Apr 2006 06:24:23 +0000 (06:24 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 29 Apr 2006 06:24:23 +0000 (06:24 +0000)
ChangeLog
doc/autoconf.texi

index 15baace9382e3de2f649ae1710f1740f3edf857d..c2f3224f8d9f80ed43acc07ed9fdc85747b5211c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2006-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * doc/autoconf.texi (Limitations of Make): Clean up markup.
+
        * ChangeLog: Typo.
        * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
        DVI output.
index 66448a4b8e47f42f9807c4b49590dd6364611cef..9e4f2fcf5f409c4785ba7c82f33fd8ef827f5e16 100644 (file)
@@ -13691,7 +13691,7 @@ However the "prerequisite rewriting" still applies here.  So if
 @command{make} will execute
 
 @smallexample
-@code{cp `test -f ../pkg/src/if.c || echo ../pkg/src/`if.c f.c}
+cp `test -f ../pkg/src/if.c || echo ../pkg/src/`if.c f.c
 @end smallexample
 
 @noindent
@@ -14047,7 +14047,7 @@ $ @kbd{cat Makefile}
 .SUFFIXES: .in
 foo: foo.in
 .in:
-        cp $< $@
+        cp $< $@@
 $ @kbd{touch foo.in}
 $ @kbd{make}
 $ @kbd{ls}
@@ -14070,7 +14070,7 @@ Note it works without the @samp{foo: foo.in} dependency.
 $ @kbd{cat Makefile}
 .SUFFIXES: .in
 .in:
-        cp $< $@
+        cp $< $@@
 $ @kbd{make foo}
 cp foo.in foo
 @end example
@@ -14083,7 +14083,7 @@ $ @kbd{cat Makefile}
 foo.out: foo.in
 .SUFFIXES: .in .out
 .in.out:
-        cp $< $@
+        cp $< $@@
 $ @kbd{make}
 cp foo.in foo.out
 @end example