summaryrefslogtreecommitdiffstats
path: root/include/package.mk
diff options
context:
space:
mode:
authorralph <ralph@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-05-31 11:35:13 +0000
committerralph <ralph@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-05-31 11:35:13 +0000
commit9158119b40ef7ad488480bfeccb007544875bc25 (patch)
tree85090a122a4606e3f578360320b3ab7ca2977665 /include/package.mk
parentfa6c7ba5a8b21ef87d2690d859df6a1d567552a6 (diff)
[package] add package source path override
- use external source tree instead of source ball - the external package source tree will be included as symlink - make package/<name>/clean will delete the symlink instead of whole source tree - usefull in conjunction with external SCM like ClearCase - package-version-override.mk has to be included before package.mk git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16227 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/package.mk')
-rw-r--r--include/package.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/package.mk b/include/package.mk
index 79e1f143d..a35166142 100644
--- a/include/package.mk
+++ b/include/package.mk
@@ -48,6 +48,17 @@ ifeq ($(DUMP)$(filter prereq clean refresh update,$(MAKECMDGOALS)),)
endif
endif
+ifeq ($(CONFIG_$(PKG_NAME)_USE_CUSTOM_SOURCE_DIR),y)
+# disable load stage
+PKG_SOURCE_URL:=
+# add hook to install a link to customer source path of dedicated package
+Hooks/Prepare/Pre += prepare_custom_source_directory
+# define empty default action
+define Build/Prepare/Default
+ @:
+endef
+endif
+
define Download/default
FILE:=$(PKG_SOURCE)
URL:=$(PKG_SOURCE_URL)