diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2017-03-11 04:09:21 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2017-03-13 00:51:35 +0000 |
commit | 48670533998f078525f7dad94b89bc371a5b3947 (patch) | |
tree | 239cbff883ab9e741b3e1dfb0ea7bf31c2bc684e /Makefile.fetch | |
parent | 243476399e76fb5ad2ce8c7fbef9e224b330c706 (diff) |
Ignore the checksum embedded in the file name
That is always MD5 sum, but we expect SHA256 now.
Change-Id: I8edf61b9a663f6f1ecc5cf23c93211e0b3201631
Reviewed-on: https://gerrit.libreoffice.org/35067
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Khaled Hosny <khaledhosny@eglug.org>
Diffstat (limited to 'Makefile.fetch')
-rw-r--r-- | Makefile.fetch | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile.fetch b/Makefile.fetch index 3091c5e4b1e0..de929d82abc0 100644 --- a/Makefile.fetch +++ b/Makefile.fetch @@ -59,10 +59,7 @@ endef define fetch_Download_item $(if $(strip $($(2))),,$(error fetch__Download_item: $(2) is empty)) $(if $(filter undefined,$(origin $(call fetch_Download__subst_var,$(2)))),\ - $(if $(call fetch_Download__is_checksum,$(firstword $(subst -, ,$($(2))))),\ - $(call fetch__Download_item,$1,$($2),$(firstword $(subst -, ,$($(2))))),\ - $(error "fetch_Download_item: no checksum found for $($(2)). Please define $(call fetch_Download__subst_var,$(2)) in download.lst.") \ - ),\ + $(error "fetch_Download_item: no checksum found for $($(2)). Please define $(call fetch_Download__subst_var,$(2)) in download.lst."),\ $(call fetch__Download_item,$(1),$($2),$($(call fetch_Download__subst_var,$(2)))) \ ) |