Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/i2c-tools/
Date: Wed, 13 Feb 2019 22:00:50
Message-Id: 1550095184.bc18344baa8b53b615e474f760624dffa6d50b38.vapier@gentoo
1 commit: bc18344baa8b53b615e474f760624dffa6d50b38
2 Author: Mike Frysinger <vapier <AT> chromium <DOT> org>
3 AuthorDate: Wed Feb 13 21:14:06 2019 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 13 21:59:44 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc18344b
7
8 sys-apps/i2c-tools: fix quoting on vars
9
10 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
11
12 sys-apps/i2c-tools/i2c-tools-4.1.ebuild | 10 +++++-----
13 1 file changed, 5 insertions(+), 5 deletions(-)
14
15 diff --git a/sys-apps/i2c-tools/i2c-tools-4.1.ebuild b/sys-apps/i2c-tools/i2c-tools-4.1.ebuild
16 index f87aa062cf9..f3549776e8e 100644
17 --- a/sys-apps/i2c-tools/i2c-tools-4.1.ebuild
18 +++ b/sys-apps/i2c-tools/i2c-tools-4.1.ebuild
19 @@ -32,9 +32,9 @@ src_configure() {
20 }
21
22 src_compile() {
23 - emake AR=$(tc-getAR) CC=$(tc-getCC) all-lib # parallel make
24 - emake CC=$(tc-getCC)
25 - emake -C eepromer CC=$(tc-getCC) CFLAGS="${CFLAGS}"
26 + emake AR="$(tc-getAR)" CC="$(tc-getCC)" all-lib # parallel make
27 + emake CC="$(tc-getCC)"
28 + emake -C eepromer CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
29
30 if use python ; then
31 cd py-smbus || die
32 @@ -50,8 +50,8 @@ src_install() {
33 dodoc CHANGES README
34 local d
35 for d in eeprom eepromer ; do
36 - docinto ${d}
37 - dodoc ${d}/README*
38 + docinto "${d}"
39 + dodoc "${d}"/README*
40 done
41
42 if use python ; then