summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-04-06 12:22:21 -0300
committerEuAndreh <eu@euandre.org>2025-04-06 12:22:21 -0300
commited64381dbab87f6d4c67b60d32fea24eee71dee7 (patch)
tree15fc8095f0bf294813511a135b916aaa891f3a4c /Makefile
parentTODOs.md: dump tasks (diff)
downloadeuandre.org-ed64381dbab87f6d4c67b60d32fea24eee71dee7.tar.gz
euandre.org-ed64381dbab87f6d4c67b60d32fea24eee71dee7.tar.xz
Makefile: Less verbose on xargs
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e8cc9d8..303769b 100644
--- a/Makefile
+++ b/Makefile
@@ -292,7 +292,7 @@ check-sorting: src/sort-expected.txt src/sort-given.txt
.SUFFIXES: .links-check-internal
sources.links-check-internal = $(sources.adoc:.adoc=.links-check-internal)
$(sources.links-check-internal): $(sources.html)
- grep '^link:' $*.links | cut -d: -f2- | xargs -tI% test -e $(*D)/%
+ grep '^link:' $*.links | cut -d: -f2- | xargs -I% test -e $(*D)/%
check-internal: $(sources.links-check-internal)