diff options
author | John Crispin <john@openwrt.org> | 2007-12-17 22:24:40 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2007-12-17 22:24:40 +0000 |
commit | a49f06f5e7603a462700bde707d435a7f8ec8755 (patch) | |
tree | 304ae3a92dce9be781cb9bac11cb078829ab2964 | |
parent | af1130b1ec506985e90e6963fac02756d7f81e39 (diff) | |
download | upstream-a49f06f5e7603a462700bde707d435a7f8ec8755.tar.gz upstream-a49f06f5e7603a462700bde707d435a7f8ec8755.tar.bz2 upstream-a49f06f5e7603a462700bde707d435a7f8ec8755.zip |
fixed copy paste error
SVN-Revision: 9792
-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 |