diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2022-02-02 17:51:14 +0000 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2022-02-02 17:55:20 +0000 |
commit | 01e121d29087db047e4bc01bd64d054f83cfc5df (patch) | |
tree | 7f013abd676b2bd3a8c8012412f9a8897c41656e /depends | |
parent | 219d728fcbde8c313940788838afa46c2fb88762 (diff) |
depends: fix capnp's descriptor for make download
The non-native capnp was trying to fetch the wrong file.
Without this, "make -C depends MULTIPROCESS=1 download" is broken.
Presumably it breaks with the download target because the dependency graph is
flattened. It manages to work if native_capnp is encountered first because it
will then be found in the cache.
Diffstat (limited to 'depends')
-rw-r--r-- | depends/packages/capnp.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/depends/packages/capnp.mk b/depends/packages/capnp.mk index abeb26545f..8a3a14810d 100644 --- a/depends/packages/capnp.mk +++ b/depends/packages/capnp.mk @@ -1,6 +1,7 @@ package=capnp $(package)_version=$(native_$(package)_version) $(package)_download_path=$(native_$(package)_download_path) +$(package)_download_file=$(native_$(package)_download_file) $(package)_file_name=$(native_$(package)_file_name) $(package)_sha256_hash=$(native_$(package)_sha256_hash) $(package)_dependencies=native_$(package) |