summaryrefslogtreecommitdiffstats
path: root/patch.mk
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2016-08-22 20:29:49 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2016-08-27 09:31:30 (GMT)
commit8e35c23242cbc7aba16463f4f9ffcc6cc17d66f4 (patch)
tree1289f786f2b9d42a5fa396d5afcec8be40e74cf7 /patch.mk
parentcce8094fb001c327cc08483eb488ba8508b9bf25 (diff)
downloadmxe-8e35c23242cbc7aba16463f4f9ffcc6cc17d66f4.zip
mxe-8e35c23242cbc7aba16463f4f9ffcc6cc17d66f4.tar.gz
mxe-8e35c23242cbc7aba16463f4f9ffcc6cc17d66f4.tar.bz2
move index.html to docs/
See https://github.com/mxe/mxe/issues/1500
Diffstat (limited to 'patch.mk')
-rw-r--r--patch.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/patch.mk b/patch.mk
index f31a73e..d73fc0a 100644
--- a/patch.mk
+++ b/patch.mk
@@ -63,14 +63,14 @@ init-git-%: download-only-%
$(if $(wildcard $(call GIT_DIR,$*)), \
$(error $(call GIT_DIR,$*) already exists), \
$(call INIT_GIT,$*)), \
- $(error Package $* not found in index.html))
+ $(error Package $* not found in docs/index.html))
import-patch-%:
$(if $(call set_is_member,$*,$(PKGS)), \
$(if $(wildcard $(call GIT_DIR,$*)), \
$(call IMPORT_PATCH,$*,$(call PATCH_BY_NAME,$*,$(PATCH_NAME))), \
$(error $(call GIT_DIR,$*) does not exist)), \
- $(error Package $* not found in index.html))
+ $(error Package $* not found in docs/index.html))
import-all-patches-%:
$(if $(call set_is_member,$*,$(PKGS)), \
@@ -78,11 +78,11 @@ import-all-patches-%:
$(foreach PKG_PATCH,$(call PKG_PATCHES,$*), \
$(call IMPORT_PATCH,$*,$(PKG_PATCH))), \
$(error $(call GIT_DIR,$*) does not exist)), \
- $(error Package $* not found in index.html))
+ $(error Package $* not found in docs/index.html))
export-patch-%:
$(if $(call set_is_member,$*,$(PKGS)), \
$(if $(wildcard $(call GIT_DIR,$*)), \
$(call EXPORT_PATCH,$*,$(PATCH_NAME)), \
$(error $(call GIT_DIR,$*) does not exist)), \
- $(error Package $* not found in index.html))
+ $(error Package $* not found in docs/index.html))