mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
6a833a6e83
Many of the external links found in the notmuch source can be resolved using https instead of http. This changeset addresses as many as i could find, without touching the e-mail corpus or expected outputs found in tests.
14 lines
316 B
Makefile
14 lines
316 B
Makefile
# -*- makefile -*-
|
|
|
|
TEST_DATABASE_MIRROR=https://notmuchmail.org/releases/test-databases
|
|
|
|
dir := test/test-databases
|
|
|
|
test_databases := $(dir)/database-v1.tar.xz
|
|
|
|
%.tar.xz:
|
|
wget -nv -O $@ ${TEST_DATABASE_MIRROR}/$(notdir $@);
|
|
|
|
download-test-databases: ${test_databases}
|
|
|
|
DATACLEAN := $(DATACLEAN) ${test_databases}
|