depends: Remove unused `lib/pkgconfig` in `qrencode` package
What changed, and why it matters
This is a minor cleanup change in Bitcoin Core's build system. It removes an unused 'pkgconfig' metadata directory left over after building the qrencode (QR code generation) dependency. There is no security issue here.
No security action required. This is a routine build cleanup change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies depends/packages/qrencode.mk to add ‘lib/pkgconfig’ to the postprocess cleanup command for the qrencode package. This directory contains .pc (pkg-config) files that are not used by Bitcoin Core’s build. The change simply prevents these unused files from being installed into the depends output tree. It is a build hygiene/cleanup change with no functional or security impact.
Changed components
depends/packages/qrencode.mkInspect captured patch +1 / −1
diff --git a/depends/packages/qrencode.mk b/depends/packages/qrencode.mk
index e3f61409..da3aafea 100644
--- a/depends/packages/qrencode.mk
+++ b/depends/packages/qrencode.mk
@@ -30,5 +30,5 @@ define $(package)_stage_cmds
endef
define $(package)_postprocess_cmds
- rm -rf share
+ rm -rf share lib/pkgconfig
endef
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.