summaryrefslogtreecommitdiff
path: root/include/package-ipkg.mk
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-08-08 02:24:37 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-08-08 02:24:37 +0000
commitb0bf5fd9a078590c51cc8e3d5e7794e150f62104 (patch)
treef39ffdeaa1062cfc85ed591546a0e14996b20603 /include/package-ipkg.mk
parent4169a2e834f174440e0547b3460ddce4bb627b5e (diff)
downloadmtk-20170518-b0bf5fd9a078590c51cc8e3d5e7794e150f62104.zip
mtk-20170518-b0bf5fd9a078590c51cc8e3d5e7794e150f62104.tar.gz
mtk-20170518-b0bf5fd9a078590c51cc8e3d5e7794e150f62104.tar.bz2
add target for library specific installations into the root staging dir, fix ipkg build dependency on the package build stamp
SVN-Revision: 17168
Diffstat (limited to 'include/package-ipkg.mk')
-rw-r--r--include/package-ipkg.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk
index debed2d..4af052c 100644
--- a/include/package-ipkg.mk
+++ b/include/package-ipkg.mk
@@ -82,12 +82,13 @@ ifeq ($(DUMP),)
$($(1)_COMMANDS) \
)
- $(STAGING_DIR_ROOT)/stamp/.$(1)_installed:
+ $(STAGING_DIR_ROOT)/stamp/.$(1)_installed: $(STAMP_BUILT)
mkdir -p $(STAGING_DIR_ROOT)/stamp
$(call Package/$(1)/install,$(STAGING_DIR_ROOT))
+ $(call Package/$(1)/install_lib,$(STAGING_DIR_ROOT))
touch $$@
- $$(IPKG_$(1)): $(STAGING_DIR)/etc/ipkg.conf $(PKG_BUILD_DIR)/.built $$(IDIR_$(1))/CONTROL/control
+ $$(IPKG_$(1)): $(STAGING_DIR)/etc/ipkg.conf $(STAMP_BUILT) $$(IDIR_$(1))/CONTROL/control
$(call Package/$(1)/install,$$(IDIR_$(1)))
mkdir -p $(PACKAGE_DIR)
-find $$(IDIR_$(1)) -name 'CVS' -o -name '.svn' -o -name '.#*' | $(XARGS) rm -rf