mirror of
https://github.com/monero-project/monero.git
synced 2024-12-26 01:29:25 -05:00
build: fix tar extract cmd for systems with 16 bit uid_t
This commit is contained in:
parent
893916ad09
commit
085d3ed136
@ -78,7 +78,7 @@ $(1)_download_path_fixed=$(subst :,\:,$$($(1)_download_path))
|
|||||||
|
|
||||||
#default commands
|
#default commands
|
||||||
$(1)_fetch_cmds ?= $(call fetch_file,$(1),$(subst \:,:,$$($(1)_download_path_fixed)),$$($(1)_download_file),$($(1)_file_name),$($(1)_sha256_hash))
|
$(1)_fetch_cmds ?= $(call fetch_file,$(1),$(subst \:,:,$$($(1)_download_path_fixed)),$$($(1)_download_file),$($(1)_file_name),$($(1)_sha256_hash))
|
||||||
$(1)_extract_cmds ?= mkdir -p $$($(1)_extract_dir) && echo "$$($(1)_sha256_hash) $$($(1)_source)" > $$($(1)_extract_dir)/.$$($(1)_file_name).hash && $(build_SHA256SUM) -c $$($(1)_extract_dir)/.$$($(1)_file_name).hash && tar --strip-components=1 -xf $$($(1)_source)
|
$(1)_extract_cmds ?= mkdir -p $$($(1)_extract_dir) && echo "$$($(1)_sha256_hash) $$($(1)_source)" > $$($(1)_extract_dir)/.$$($(1)_file_name).hash && $(build_SHA256SUM) -c $$($(1)_extract_dir)/.$$($(1)_file_name).hash && tar --no-same-owner --strip-components=1 -xf $$($(1)_source)
|
||||||
$(1)_preprocess_cmds ?=
|
$(1)_preprocess_cmds ?=
|
||||||
$(1)_build_cmds ?=
|
$(1)_build_cmds ?=
|
||||||
$(1)_config_cmds ?=
|
$(1)_config_cmds ?=
|
||||||
|
Loading…
Reference in New Issue
Block a user