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/ldns.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/ldns.mk')
-rw-r--r-- | contrib/depends/packages/ldns.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/depends/packages/ldns.mk b/contrib/depends/packages/ldns.mk index 0b7c3806a..ea4902170 100644 --- a/contrib/depends/packages/ldns.mk +++ b/contrib/depends/packages/ldns.mk @@ -6,8 +6,8 @@ $(package)_sha256_hash=8b88e059452118e8949a2752a55ce59bc71fa5bc414103e17f5b6b06f $(package)_dependencies=openssl define $(package)_set_vars - $(package)_config_opts=--disable-shared --enable-static --disable-dane-ta-usage --with-drill - $(package)_config_opts=--with-ssl=$(host_prefix) + $(package)_config_opts=--disable-shared --enable-static --with-drill + $(package)_config_opts+=--with-ssl=$(host_prefix) $(package)_config_opts_release=--disable-debug-mode $(package)_config_opts_linux=--with-pic endef @@ -25,4 +25,6 @@ define $(package)_stage_cmds endef define $(package)_postprocess_cmds + rm lib/*.la endef + |