From: Felix Fietkau Date: Sun, 9 Dec 2007 18:53:06 +0000 (+0000) Subject: Use $(CP) instead of $(INSTALL_BIN) for binaries. X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=e0ea2971a91e3931b3444cd198bb85f743c76963;p=project%2Ffirmware-utils.git Use $(CP) instead of $(INSTALL_BIN) for binaries. Signed-off-by: Andy Boyett SVN-Revision: 9694 --- diff --git a/Makefile b/Makefile index 6a0c223..e5537b4 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ define Build/Compile endef define Build/Install - $(CP) $(PKG_BUILD_DIR)/bin/* $(STAGING_DIR_HOST)/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/* $(STAGING_DIR_HOST)/bin/ endef $(eval $(call HostBuild))