mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-30 16:54:19 +00:00
depends: fix "unexpected operator" error during "make download"
This commit is contained in:
parent
fe740f1469
commit
bb717f4375
@ -147,9 +147,9 @@ endef
|
|||||||
|
|
||||||
define check_or_remove_sources
|
define check_or_remove_sources
|
||||||
mkdir -p $($(package)_source_dir); cd $($(package)_source_dir); \
|
mkdir -p $($(package)_source_dir); cd $($(package)_source_dir); \
|
||||||
$(build_SHA256SUM) -c $($(package)_fetched) >/dev/null 2>/dev/null || \
|
test -f $($(package)_fetched) && ( $(build_SHA256SUM) -c $($(package)_fetched) >/dev/null 2>/dev/null || \
|
||||||
( if test -f $($(package)_all_sources); then echo "Checksum missing or mismatched for $(package) source. Forcing re-download."; fi; \
|
( echo "Checksum missing or mismatched for $(package) source. Forcing re-download."; \
|
||||||
rm -f $($(package)_all_sources) $($(1)_fetched))
|
rm -f $($(package)_all_sources) $($(1)_fetched))) || true
|
||||||
endef
|
endef
|
||||||
|
|
||||||
check-packages:
|
check-packages:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user