From: John Crispin Date: Mon, 8 Oct 2007 19:49:11 +0000 (+0000) Subject: changed pkg_install_files so one can specify the folder to install from X-Git-Tag: reboot~27904 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=5a4b6b5f4ed6ad1cf1518e6a2ea47e3ee5b65f1a changed pkg_install_files so one can specify the folder to install from SVN-Revision: 9192 --- diff --git a/include/package.mk b/include/package.mk index 6307a1f47c..d90bec8872 100644 --- a/include/package.mk +++ b/include/package.mk @@ -122,7 +122,7 @@ define libtool_fixup_libdir 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)`;) + $(foreach install_file,$(3),$(INSTALL_DIR) $(2)/`dirname $(install_file)`; $(CP) $(1)/$(install_file) $(2)/`dirname $(install_file)`;) endef define Build/Prepare