From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 25CEB1382C5 for ; Sat, 21 Apr 2018 17:33:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53DE9E0870; Sat, 21 Apr 2018 17:33:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36241E0870 for ; Sat, 21 Apr 2018 17:33:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D55F335C74 for ; Sat, 21 Apr 2018 17:33:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A637227C for ; Sat, 21 Apr 2018 17:33:15 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1524331974.64095b1dfcc2d960025fd5accd3fe8d96d6431d2.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/i2c-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/i2c-tools/i2c-tools-4.0.ebuild X-VCS-Directories: sys-apps/i2c-tools/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 64095b1dfcc2d960025fd5accd3fe8d96d6431d2 X-VCS-Branch: master Date: Sat, 21 Apr 2018 17:33:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2b4d287f-cedf-4c62-ac06-41e6714f9a42 X-Archives-Hash: f413c4f7b9e07a64e6bc73982ff55ef7 commit: 64095b1dfcc2d960025fd5accd3fe8d96d6431d2 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Apr 21 17:32:10 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Apr 21 17:32:54 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64095b1d sys-apps/i2c-tools: respect AR/CFLAGS Closes: https://bugs.gentoo.org/651528 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-apps/i2c-tools/i2c-tools-4.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-apps/i2c-tools/i2c-tools-4.0.ebuild b/sys-apps/i2c-tools/i2c-tools-4.0.ebuild index 32dffbf1e2b..3cd2a7f5508 100644 --- a/sys-apps/i2c-tools/i2c-tools-4.0.ebuild +++ b/sys-apps/i2c-tools/i2c-tools-4.0.ebuild @@ -32,9 +32,9 @@ src_configure() { } src_compile() { - emake all-lib CC=$(tc-getCC) # parallel make + emake all-lib AR=$(tc-getAR) CC=$(tc-getCC) # parallel make emake CC=$(tc-getCC) - emake -C eepromer CC=$(tc-getCC) + emake -C eepromer CC=$(tc-getCC) CFLAGS="${CFLAGS}" if use python ; then cd py-smbus || die append-cppflags -I../include @@ -45,7 +45,7 @@ src_compile() { src_install() { emake install-lib install libdir="${D}"/usr/$(get_libdir) prefix="${D}"/usr dosbin eepromer/eeprom{,er} - rm -rf "${D}"/usr/include # part of linux-headers + rm -rf "${D}"/usr/include || die # part of linux-headers dodoc CHANGES README local d for d in eeprom eepromer ; do