diff options
author | John Crispin <blogic@openwrt.org> | 2007-12-17 22:24:40 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2007-12-17 22:24:40 +0000 |
commit | f97de8bde8e7f9c89d6b5576dc215b676d5a6847 (patch) | |
tree | 130dc22212dd35f27ca9f2d144fd222d5d52fc52 /include | |
parent | d6ff64c32375a3f28717dd2ed6e61d3058be6f62 (diff) | |
download | upstream-f97de8bde8e7f9c89d6b5576dc215b676d5a6847.tar.gz upstream-f97de8bde8e7f9c89d6b5576dc215b676d5a6847.tar.bz2 upstream-f97de8bde8e7f9c89d6b5576dc215b676d5a6847.zip |
fixed copy paste error
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9792 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/package.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/package.mk b/include/package.mk index 83c3025de2..90750fe26b 100644 --- a/include/package.mk +++ b/include/package.mk @@ -135,7 +135,7 @@ define pkg_install_files endef define pkg_install_bin - $(foreach install_apps,$(1),$(INSTALL_DIR) $(3)/`dirname $(install_file)`; $(INSTALL_BIN) $(2)/$(install_file) $(3)/`dirname $(install_file)`;) + $(foreach install_apps,$(1),$(INSTALL_DIR) $(3)/`dirname $(install_apps)`; $(INSTALL_BIN) $(2)/$(install_apps) $(3)/`dirname $(install_apps)`;) endef define Build/Prepare |