aboutsummaryrefslogtreecommitdiff
path: root/depends
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-08-24 16:10:00 +0100
committerfanquake <fanquake@gmail.com>2022-08-24 16:10:00 +0100
commit22dada5d1744c3e6f1a38ef1b3f5a93cba6e3163 (patch)
tree8f92ffa5cf312015678a182f453e93fbc18972c2 /depends
parent3c1e75ef607000b265c15b47b32485cd95c1245d (diff)
downloadbitcoin-22dada5d1744c3e6f1a38ef1b3f5a93cba6e3163.tar.xz
build: prune compat event headers
The *_compat headers are the deprecated / non-threadsafe versions of the current headers. There's no need for us to ship them in depends. Prune them are save the safe / nuke the possibility of them being used.
Diffstat (limited to 'depends')
-rw-r--r--depends/packages/libevent.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/depends/packages/libevent.mk b/depends/packages/libevent.mk
index 1efe6220d3..5bd12522a7 100644
--- a/depends/packages/libevent.mk
+++ b/depends/packages/libevent.mk
@@ -37,5 +37,6 @@ endef
define $(package)_postprocess_cmds
rm lib/*.la && \
- rm include/ev*.h
+ rm include/ev*.h && \
+ rm include/event2/*_compat.h
endef