about summary refs log tree commit homepage
path: root/Documentation
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-09-18 10:15:13 +0000
committerEric Wong <e@80x24.org>2023-09-20 19:14:23 +0000
commitae452a4116476cf9ed17b73c8df51492ce7624da (patch)
tree30c65f62a01c14857d45b8a08ce830f6d423ea89 /Documentation
parenteb4ed924e9f8075ed134fbd590d390e208f4120f (diff)
downloadpublic-inbox-ae452a4116476cf9ed17b73c8df51492ce7624da.tar.gz
This non-portable construct isn't needed for our own rules.
I'm understanding them correctly, they have different
semantics between *BSDs and GNU make.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/include.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/include.mk b/Documentation/include.mk
index 4395e4f4..eb65454a 100644
--- a/Documentation/include.mk
+++ b/Documentation/include.mk
@@ -47,14 +47,14 @@ install-man: man
 
 doc_install :: install-man
 
-check :: check-man
+check : check-man
 check_man = $(AWK) \
         '{gsub(/\b./,"")}$$0 !~ /\.onion/&&length>80{print;e=1}END{exit(e)}' \
         >&2
 
-check-man :: $(check_80)
+check-man : $(check_80)
 
-check-lexgrog :: $(check_lexgrog)
+check-lexgrog : $(check_lexgrog)
 
 all :: $(docs)
 
@@ -86,7 +86,7 @@ NEWS NEWS.atom NEWS.html : $(news_deps)
         $(PERL) -I lib -w Documentation/mknews.perl $@ $(RELEASES)
 
 # check for internal API changes:
-check :: NEWS .NEWS.atom.check NEWS.html
+check : NEWS .NEWS.atom.check NEWS.html
 
 .NEWS.atom.check: NEWS.atom
         $(XMLSTARLET) val NEWS.atom || \