From: Daniel Dickinson Date: Tue, 29 Mar 2011 12:31:23 +0000 (+0000) Subject: [libs] newt: Fixed whiptail install so that it takes the files from the package build... X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=6c9a812f515b09e5f6eba42d152823a51e8b9aba;p=openwrt%2Fsvn-archive%2Farchive.git [libs] newt: Fixed whiptail install so that it takes the files from the package build dir, not the non-existant package install dir SVN-Revision: 26357 --- diff --git a/libs/newt/Makefile b/libs/newt/Makefile index 75fdb145b6..858c6e2294 100644 --- a/libs/newt/Makefile +++ b/libs/newt/Makefile @@ -66,7 +66,7 @@ endef define Package/whiptail/install $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/whiptail $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/whiptail $(1)/usr/bin/ endef $(eval $(call BuildPackage,libnewt))