summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2022-01-18 16:06:24 -0500
committerPaul Smith <psmith@gnu.org>2022-02-06 18:46:29 -0500
commitaab51f7ef20a20780eaa0a4bbd56636a0bd0e32d (patch)
tree12471739eec72e99e44710862d7329f6fbe895df /doc
parent2b25eac58717cb924d37bf6e13cf9bd389f9217c (diff)
downloadmake-git-aab51f7ef20a20780eaa0a4bbd56636a0bd0e32d.tar.gz
* doc/make.texi (Using One Shell): Correct example to use $<.
Diffstat (limited to 'doc')
-rw-r--r--doc/make.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/make.texi b/doc/make.texi
index 896ca0cd..14476515 100644
--- a/doc/make.texi
+++ b/doc/make.texi
@@ -4122,8 +4122,8 @@ example:
@example
.ONESHELL:
foo : bar/lose
- cd $(@@D)
- gobble $(@@F) > ../$@@
+ cd $(<D)
+ gobble $(<F) > ../$@@
@end example
@noindent