From mboxrd@z Thu Jan 1 00:00:00 1970 From: llandwerlin at gmail.com Date: Sun, 7 Feb 2010 17:55:40 +0100 Subject: [Buildroot] [PATCH 08/10] external toolchain: fix strip of libraries In-Reply-To: <1265561742-5924-1-git-send-email-llandwerlin@gmail.com> References: <1265561742-5924-1-git-send-email-llandwerlin@gmail.com> Message-ID: <1265561742-5924-9-git-send-email-llandwerlin@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net From: Lionel Landwerlin Signed-off-by: Lionel Landwerlin --- toolchain/external-toolchain/ext-tool.mk | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/toolchain/external-toolchain/ext-tool.mk b/toolchain/external-toolchain/ext-tool.mk index 1f5aa19..39faf84 100644 --- a/toolchain/external-toolchain/ext-tool.mk +++ b/toolchain/external-toolchain/ext-tool.mk @@ -56,9 +56,9 @@ copy_toolchain_lib_root = \ elif test -f $${LIB_DIR}/$${LIB}; then \ $(INSTALL) -D -m0755 $${LIB_DIR}/$${LIB} $(TARGET_DIR)$${DST}/$${LIB}; \ case "$${STRIP}" in \ - (0 | n | no) \ -;; \ (*) \ +;; \ + (y) \ $(TARGET_CROSS)strip "$(TARGET_DIR)$${DST}/$${LIB}"; \ ;; \ esac; \ -- 1.6.6