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/sodium-darwin.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/sodium-darwin.mk')
-rw-r--r-- | contrib/depends/packages/sodium-darwin.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/depends/packages/sodium-darwin.mk b/contrib/depends/packages/sodium-darwin.mk index 8b6ee3f1d..9f11a9426 100644 --- a/contrib/depends/packages/sodium-darwin.mk +++ b/contrib/depends/packages/sodium-darwin.mk @@ -23,3 +23,8 @@ endef define $(package)_stage_cmds $(MAKE) DESTDIR=$($(package)_staging_dir) install endef + +define $(package)_postprocess_cmds + rm lib/*.la +endef + |