mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
build: Propagate user-defined flags to host packages
This commit is contained in:
parent
f3e0ace8ec
commit
071eef1e97
1 changed files with 5 additions and 0 deletions
|
@ -29,8 +29,13 @@ host_$1=$$($(host_arch)_$(host_os)_$1)
|
|||
endef
|
||||
|
||||
define add_host_flags_func
|
||||
ifeq ($(filter $(origin $1),undefined default),)
|
||||
$(host_arch)_$(host_os)_$1 =
|
||||
$(host_arch)_$(host_os)_$(release_type)_$1 = $($1)
|
||||
else
|
||||
$(host_arch)_$(host_os)_$1 += $($(host_os)_$1)
|
||||
$(host_arch)_$(host_os)_$(release_type)_$1 += $($(host_os)_$(release_type)_$1)
|
||||
endif
|
||||
host_$1 = $$($(host_arch)_$(host_os)_$1)
|
||||
host_$(release_type)_$1 = $$($(host_arch)_$(host_os)_$(release_type)_$1)
|
||||
endef
|
||||
|
|
Loading…
Add table
Reference in a new issue