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

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