From df91d06078e3076f75478b1459fd1a7709ff6bd4 Mon Sep 17 00:00:00 2001 From: Filip Matusiak Date: Mon, 3 Nov 2025 12:35:17 +0100 Subject: [PATCH] map-plugins: allow for local compile --- map-plugins/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/map-plugins/Makefile b/map-plugins/Makefile index 1dab3ad77..284ab009a 100644 --- a/map-plugins/Makefile +++ b/map-plugins/Makefile @@ -71,5 +71,11 @@ define Build/Compile $(foreach p,$(plugins),$(call Build/Compile/map-plugins-$(p), $(1))) endef +ifeq ($(LOCAL_DEV),1) +define Build/Prepare + rsync -r --exclude=.* ~/git/map-plugins/ $(PKG_BUILD_DIR)/ +endef +endif + $(eval $(call BuildPackage,map-plugins)) $(eval $(foreach p,$(ppkg),$(call BuildPackage,$(p))))