summaryrefslogtreecommitdiffstats
path: root/patch.mk
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2016-12-17 20:54:32 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2016-12-22 21:25:48 (GMT)
commit5d832ebf703325cf693a48d092cc4c697d216b57 (patch)
treeff90f1a5b22309c05f9514a867fe810c07dfb469 /patch.mk
parentf06ef1c01b1a93b9e3bfff5ea2e66992c35547ed (diff)
downloadmxe-5d832ebf703325cf693a48d092cc4c697d216b57.zip
mxe-5d832ebf703325cf693a48d092cc4c697d216b57.tar.gz
mxe-5d832ebf703325cf693a48d092cc4c697d216b57.tar.bz2
core packages are now a plugin
See https://github.com/mxe/mxe/issues/1422
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 d73fc0a..c036784 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 docs/index.html))
+ $(error Package $* not found))
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 docs/index.html))
+ $(error Package $* not found))
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 docs/index.html))
+ $(error Package $* not found))
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 docs/index.html))
+ $(error Package $* not found))