diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2025-08-28 22:24:49 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2025-08-31 11:32:16 -0400 |
commit | c8a3dc9edf2500bfdb5c231c36e77424728a6365 (patch) | |
tree | 47f4362042aee536c8f7840f00562dc8e8b8ba26 | |
parent | 61a0491496f8a5d90b4c8d8f8a5b38f648c1808a (diff) | |
download | bfs-c8a3dc9edf2500bfdb5c231c36e77424728a6365.tar.xz |
build: Remove unused PKGS variable
-rw-r--r-- | build/pkgs.mk | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/build/pkgs.mk b/build/pkgs.mk index f692739..f45c357 100644 --- a/build/pkgs.mk +++ b/build/pkgs.mk @@ -14,7 +14,6 @@ gen/pkgs.mk: ${HEADERS} ${MSG} "[ GEN] $@" @printf '# %s\n' "$@" >$@ @gen() { \ - printf 'PKGS := %s\n' "$$*"; \ printf '_CFLAGS += %s\n' "$$(build/pkgconf.sh --cflags "$$@")"; \ printf '_LDFLAGS += %s\n' "$$(build/pkgconf.sh --ldflags "$$@")"; \ printf '_LDLIBS := %s $${_LDLIBS}\n' "$$(build/pkgconf.sh --ldlibs "$$@")"; \ |