commit:     bc18344baa8b53b615e474f760624dffa6d50b38
Author:     Mike Frysinger <vapier <AT> chromium <DOT> org>
AuthorDate: Wed Feb 13 21:14:06 2019 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> 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 <vapier <AT> 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

Reply via email to