From: Jo-Philipp Wich Date: Thu, 27 Oct 2011 23:24:19 +0000 (+0000) Subject: [packages] binutils: move /usr/bin/strings to /bin/strings, avoids clash with busybox... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=cd19de52660164e4584bb06bde1aa1608528666e [packages] binutils: move /usr/bin/strings to /bin/strings, avoids clash with busybox applet SVN-Revision: 28640 --- diff --git a/devel/binutils/Makefile b/devel/binutils/Makefile index 79dcc0336e..50580e458d 100644 --- a/devel/binutils/Makefile +++ b/devel/binutils/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=binutils PKG_VERSION:=$(strip $(subst ",, $(CONFIG_BINUTILS_VERSION))) #")) -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_SOURCE_URL:=@GNU/binutils PKG_SOURCE:=binutils-$(PKG_VERSION).tar.bz2 @@ -101,8 +101,9 @@ define Package/objdump/install endef define Package/binutils/install - $(INSTALL_DIR) $(1)/usr + $(INSTALL_DIR) $(1)/usr $(1)/bin $(CP) $(PKG_INSTALL_DIR)/usr/bin/ $(1)/usr/ + mv $(1)/usr/bin/strings $(1)/bin/strings rm -f $(1)/usr/bin/objdump endef