]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* doc/make.texi: [SV 64924] Add missing parenthesis
authorPaul Smith <psmith@gnu.org>
Mon, 27 Nov 2023 04:21:55 +0000 (23:21 -0500)
committerPaul Smith <psmith@gnu.org>
Mon, 27 Nov 2023 04:21:55 +0000 (23:21 -0500)
doc/make.texi

index dfc1bdd3502844bc800f99b0cbd5adacb298a18a..35ab13afbd5775c351b0b38a136cd26c360e25e0 100644 (file)
@@ -8957,7 +8957,7 @@ again:
 @group
 sources = foo.c bar.c
 
-ifeq (,$(filter clean,$(MAKECMDGOALS))
+ifeq (,$(filter clean,$(MAKECMDGOALS)))
 include $(sources:.c=.d)
 endif
 @end group