* doc/make.texi: Use $(firstword) rather than $(word 1,)

This commit is contained in:
Paul Smith 2022-11-27 15:31:56 -05:00
parent dc2d963989
commit a99183ed2b

View File

@ -7352,7 +7352,7 @@ marking an archive file up to date:
@example
archive.a: @dots{}
ifneq (,$(findstring t,$(word 1,-$(MAKEFLAGS))))
ifneq (,$(findstring t,$(firstword -$(MAKEFLAGS))))
+touch archive.a
+ranlib -t archive.a
else