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 B1919138334 for ; Wed, 13 Feb 2019 22:00:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71B1DE0999; Wed, 13 Feb 2019 22:00:49 +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 4FA18E0999 for ; Wed, 13 Feb 2019 22:00:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CCD65335D40 for ; Wed, 13 Feb 2019 22:00:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF0FD4D3 for ; Wed, 13 Feb 2019 22:00:45 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1550095184.bc18344baa8b53b615e474f760624dffa6d50b38.vapier@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.1.ebuild X-VCS-Directories: sys-apps/i2c-tools/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: bc18344baa8b53b615e474f760624dffa6d50b38 X-VCS-Branch: master Date: Wed, 13 Feb 2019 22:00:45 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5184204c-9d6e-4fa9-8780-81c5380a3ab0 X-Archives-Hash: d7a9149c903cd0213f7ede5df1a137e1 commit: bc18344baa8b53b615e474f760624dffa6d50b38 Author: Mike Frysinger chromium org> AuthorDate: Wed Feb 13 21:14:06 2019 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Feb 13 21:59:44 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc18344b sys-apps/i2c-tools: fix quoting on vars Signed-off-by: Mike Frysinger gentoo.org> sys-apps/i2c-tools/i2c-tools-4.1.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sys-apps/i2c-tools/i2c-tools-4.1.ebuild b/sys-apps/i2c-tools/i2c-tools-4.1.ebuild index f87aa062cf9..f3549776e8e 100644 --- a/sys-apps/i2c-tools/i2c-tools-4.1.ebuild +++ b/sys-apps/i2c-tools/i2c-tools-4.1.ebuild @@ -32,9 +32,9 @@ src_configure() { } src_compile() { - emake AR=$(tc-getAR) CC=$(tc-getCC) all-lib # parallel make - emake CC=$(tc-getCC) - emake -C eepromer CC=$(tc-getCC) CFLAGS="${CFLAGS}" + emake AR="$(tc-getAR)" CC="$(tc-getCC)" all-lib # parallel make + emake CC="$(tc-getCC)" + emake -C eepromer CC="$(tc-getCC)" CFLAGS="${CFLAGS}" if use python ; then cd py-smbus || die @@ -50,8 +50,8 @@ src_install() { dodoc CHANGES README local d for d in eeprom eepromer ; do - docinto ${d} - dodoc ${d}/README* + docinto "${d}" + dodoc "${d}"/README* done if use python ; then