]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* doc/make.texi (Using One Shell): Correct example to use $<.
authorPaul Smith <psmith@gnu.org>
Tue, 18 Jan 2022 21:06:24 +0000 (16:06 -0500)
committerPaul Smith <psmith@gnu.org>
Sun, 6 Feb 2022 23:46:29 +0000 (18:46 -0500)
doc/make.texi

index 896ca0cdcb63918e3388bd41af5f7c3a0a3d38a6..1447651567b2e2e78d6519386d43394849ca3d7b 100644 (file)
@@ -4122,8 +4122,8 @@ example:
 @example
 .ONESHELL:
 foo : bar/lose
-        cd $(@@D)
-        gobble $(@@F) > ../$@@
+        cd $(<D)
+        gobble $(<F) > ../$@@
 @end example
 
 @noindent