diff options
author | fanquake <fanquake@gmail.com> | 2022-01-07 14:01:44 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-02-10 12:33:02 +0000 |
commit | 75ae39eeec22e56c92f1241ff2ae87ad9a974625 (patch) | |
tree | 425e9fbe64ad2df05371f76d04c43b395d55a6b3 /depends/Makefile | |
parent | a7e80449c0811b361cdaea39b6bab78ca5fbf668 (diff) |
build: add a default build tar in depends
This is so we can override it later for BSDs.
Diffstat (limited to 'depends/Makefile')
-rw-r--r-- | depends/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/depends/Makefile b/depends/Makefile index 003778b375..fba30a1d4e 100644 --- a/depends/Makefile +++ b/depends/Makefile @@ -182,7 +182,7 @@ $(host_prefix)/.stamp_$(final_build_id): $(native_packages) $(packages) mkdir -p $(@D) echo copying packages: $^ echo to: $(@D) - cd $(@D); $(foreach package,$^, tar xf $($(package)_cached); ) + cd $(@D); $(foreach package,$^, $(build_TAR) xf $($(package)_cached); ) touch $@ # $PATH is not preserved between ./configure and make by convention. Its |