From: Paul Smith Date: Sun, 27 Nov 2022 20:31:56 +0000 (-0500) Subject: * doc/make.texi: Use $(firstword) rather than $(word 1,) X-Git-Tag: 4.4.0.90~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a99183ed2b8bfc474be16e42dad38d09b06cd69b;p=thirdparty%2Fmake.git * doc/make.texi: Use $(firstword) rather than $(word 1,) --- diff --git a/doc/make.texi b/doc/make.texi index e3a3ade4..edceee76 100644 --- a/doc/make.texi +++ b/doc/make.texi @@ -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