summaryrefslogtreecommitdiffstats
path: root/build/pkgs.mk
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2025-05-26 23:30:28 -0400
committerTavian Barnes <tavianator@tavianator.com>2025-05-26 23:30:28 -0400
commit397181df7c7372bdf4897296dabe386fa4212ea8 (patch)
treed07bfd677de2511c478f2a1e41c68914236914ab /build/pkgs.mk
parent7e92bc9d00db4bb35b491881f54484b24d3ed97d (diff)
downloadbfs-397181df7c7372bdf4897296dabe386fa4212ea8.tar.xz
build: Use $^ instead of ${.ALLSRC}
Diffstat (limited to 'build/pkgs.mk')
-rw-r--r--build/pkgs.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/pkgs.mk b/build/pkgs.mk
index 5de9ac2..f692739 100644
--- a/build/pkgs.mk
+++ b/build/pkgs.mk
@@ -19,7 +19,7 @@ gen/pkgs.mk: ${HEADERS}
printf '_LDFLAGS += %s\n' "$$(build/pkgconf.sh --ldflags "$$@")"; \
printf '_LDLIBS := %s $${_LDLIBS}\n' "$$(build/pkgconf.sh --ldlibs "$$@")"; \
}; \
- gen $$(grep -l ' true$$' ${.ALLSRC} | sed 's|.*/\(.*\)\.h|\1|') >>$@
+ gen $$(grep -l ' true$$' $^ | sed 's|.*/\(.*\)\.h|\1|') >>$@
${VCAT} $@
.PHONY: gen/pkgs.mk