From: Dmitry Goncharov Date: Sat, 28 Jan 2023 18:09:36 +0000 (-0500) Subject: * doc/make.texi: [SV 63689] Fix typos in examples X-Git-Tag: 4.4.0.91~10 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=f21cd822a3a196e70eb6a3a515a63cc7dfd2f24c;p=thirdparty%2Fmake.git * doc/make.texi: [SV 63689] Fix typos in examples --- diff --git a/doc/make.texi b/doc/make.texi index b8cbb52c..69b1473f 100644 --- a/doc/make.texi +++ b/doc/make.texi @@ -11529,7 +11529,7 @@ rules by adding these lines to your makefile: @example (%) : % ; -%.a : ; $(AR) $(ARFLAGS) $@ $? +%.a : ; $(AR) $(ARFLAGS) $@@ $? @end example The first line changes the rule that updates an individual object in the @@ -11548,7 +11548,7 @@ If you prefer to write an explicit rule you can use: @example libfoo.a: libfoo.a(x.o y.o @dots{}) - $(AR) $(ARFLAGS) $@ $? + $(AR) $(ARFLAGS) $@@ $? @end example @node Archive Suffix Rules, , Archive Pitfalls, Archives