diff options
author | TheCharlatan <seb.kung@gmail.com> | 2019-06-17 11:25:10 +0200 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2019-06-25 09:21:33 +0200 |
commit | cbbb24cfe1c3dc7ec615a4ca73cbe2fea90b8396 (patch) | |
tree | 9bb4e76dad62519b0859b21e1c6b999c76f8638c /contrib/depends/packages/hidapi.mk | |
parent | Add debug targets to depends Makefile (diff) | |
download | monero-cbbb24cfe1c3dc7ec615a4ca73cbe2fea90b8396.tar.xz |
Remove clutter in depends installed packages
To speedup the depends cached builds, remove some some clutter from the package
files. This mainly incldues removing all the shared libraries and .la
linker files. It also gives stronger guarantees that monero only links
the static libs without any external rvalues.
Diffstat (limited to 'contrib/depends/packages/hidapi.mk')
-rw-r--r-- | contrib/depends/packages/hidapi.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/depends/packages/hidapi.mk b/contrib/depends/packages/hidapi.mk index 1c43e525a..40e9b9dca 100644 --- a/contrib/depends/packages/hidapi.mk +++ b/contrib/depends/packages/hidapi.mk @@ -28,3 +28,8 @@ endef define $(package)_stage_cmds $(MAKE) DESTDIR=$($(package)_staging_dir) install endef + +define $(package)_postprocess_cmds + rm lib/*.la +endef + |