From: John Crispin Date: Sun, 7 Oct 2007 01:55:03 +0000 (+0000) Subject: added a function, that packages can call to make installing files/folders much cleane... X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=439fcf5dae1143e9bfb8bad8184de16a611e65ca;p=15.05%2Fopenwrt.git added a function, that packages can call to make installing files/folders much cleaner and easier git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9171 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/package.mk b/include/package.mk index d61eb8cf7a..6307a1f47c 100644 --- a/include/package.mk +++ b/include/package.mk @@ -121,6 +121,10 @@ define libtool_fixup_libdir $(SED) "s,^libdir='/usr/lib',libdir='$(strip $(1))/usr/lib',g" endef +define pkg_install_files + $(foreach install_file,$(2),$(INSTALL_DIR) $(1)/`dirname $(install_file)`; $(CP) $(PKG_INSTALL_DIR)/$(install_file) $(1)/`dirname $(install_file)`;) +endef + define Build/Prepare $(call Build/Prepare/Default,) endef