summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorlars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-09-11 16:13:14 +0000
committerlars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-09-11 16:13:14 +0000
commit061bed4163cf0e0602cb2901e7e7ee040fd3f491 (patch)
treefbbe9986d0cc714e457bad6f120c53fdaa5f9b87 /include
parentbdbfc90b0b0847eb213ead530722c25883dccacf (diff)
Add InstallDev/(Pre|Post) hooks.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12569 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r--include/package.mk12
1 files changed, 10 insertions, 2 deletions
diff --git a/include/package.mk b/include/package.mk
index 9c6503799..d375130a8 100644
--- a/include/package.mk
+++ b/include/package.mk
@@ -1,9 +1,10 @@
-#
-# Copyright (C) 2006-2007 OpenWrt.org
+#
+# Copyright (C) 2006-2008 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
+# $Id$
all: $(if $(DUMP),dumpinfo,compile)
@@ -89,7 +90,14 @@ define Build/DefaultTargets
$(SUBMAKE) -j1 clean-staging
rm -rf $(TMP_DIR)/stage-$(PKG_NAME)
mkdir -p $(TMP_DIR)/stage-$(PKG_NAME)/host $(STAGING_DIR)/packages $(STAGING_DIR_HOST)/packages
+ $(foreach hook,$(Hooks/InstallDev/Pre),\
+ $(call $(hook),$(TMP_DIR)/stage-$(PKG_NAME),$(TMP_DIR)/stage-$(PKG_NAME)/host)$(sep)\
+ )
$(call Build/InstallDev,$(TMP_DIR)/stage-$(PKG_NAME),$(TMP_DIR)/stage-$(PKG_NAME)/host)
+ $(foreach hook,$(Hooks/InstallDev/Post),\
+ $(call $(hook),$(TMP_DIR)/stage-$(PKG_NAME),$(TMP_DIR)/stage-$(PKG_NAME)/host
+)$(sep)\
+ )
if [ -d $(TMP_DIR)/stage-$(PKG_NAME) ]; then \
(cd $(TMP_DIR)/stage-$(PKG_NAME); find ./ > $(STAGING_DIR)/packages/$(PKG_NAME).list); \
$(CP) $(TMP_DIR)/stage-$(PKG_NAME)/* $(STAGING_DIR)/; \