0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05:00

build: don't install deprecated libevent headers

We don't use the deprecated headers now, and never should do in the
future, so there is no need for them to exist in depends.

The headers themselves are just full of includes for the newer headers.
This commit is contained in:
fanquake 2022-03-10 15:52:26 +00:00
parent 93feabcb30
commit 339b4a51f6
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

@ -36,5 +36,6 @@ define $(package)_stage_cmds
endef
define $(package)_postprocess_cmds
rm lib/*.la
rm lib/*.la && \
rm include/ev*.h
endef