From mboxrd@z Thu Jan 1 00:00:00 1970 From: llandwerlin at gmail.com Date: Wed, 14 Apr 2010 01:05:41 +0200 Subject: [Buildroot] [PATCH 08/41] ext-toolchain: remove pkgconfig files from the external toolchain In-Reply-To: <1271199974-30434-1-git-send-email-llandwerlin@gmail.com> References: <1271199974-30434-1-git-send-email-llandwerlin@gmail.com> Message-ID: <1271199974-30434-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 | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/toolchain/external-toolchain/ext-tool.mk b/toolchain/external-toolchain/ext-tool.mk index 235e68c..0b6af52 100644 --- a/toolchain/external-toolchain/ext-tool.mk +++ b/toolchain/external-toolchain/ext-tool.mk @@ -80,7 +80,8 @@ copy_toolchain_lib_root = \ copy_toolchain_sysroot = \ SYSROOT_DIR="$(strip $1)"; \ cp -a $${SYSROOT_DIR}/* $(STAGING_DIR)/ ; \ - find $(STAGING_DIR) -type d | xargs chmod 755 + find $(STAGING_DIR) -type d | xargs chmod 755; \ + rm -rf $(STAGING_DIR)/usr/lib/pkgconfig # # Check the availability of a particular glibc feature. We assume that -- 1.7.0.4