]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* doc/make.texi (Recipe Execution): Correct example to use $(<[DF])
authorPaul Smith <psmith@gnu.org>
Sun, 8 Sep 2019 00:08:43 +0000 (20:08 -0400)
committerPaul Smith <psmith@gnu.org>
Sun, 8 Sep 2019 00:12:44 +0000 (20:12 -0400)
doc/make.texi

index cb0fc06e5c51b112d451ffd394bd619cab183ee7..966226789ac2384a9ba9661318082c396ece48f8 100644 (file)
@@ -3980,7 +3980,7 @@ the statements in sequence.  For example:
 
 @example
 foo : bar/lose
-        cd $(@@D) && gobble $(@@F) > ../$@@
+        cd $(<D) && gobble $(<F) > ../$@@
 @end example
 
 @noindent