summaryrefslogtreecommitdiffstats
path: root/patch.mk
diff options
context:
space:
mode:
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))