commit:     2c743a1c520e5ecf2793d63a2715b0f6fe7f7287
Author:     Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  9 16:11:57 2016 +0000
Commit:     Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
CommitDate: Thu Jun  9 16:12:52 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c743a1c

sys-boot/syslinux: fix quoting for toolchain functions

Bug: https://bugs.gentoo.org/show_bug.cgi?id=585186

Package-Manager: portage-2.2.28

 sys-boot/syslinux/syslinux-3.86.ebuild      | 4 ++--
 sys-boot/syslinux/syslinux-4.07.ebuild      | 4 ++--
 sys-boot/syslinux/syslinux-5.10.ebuild      | 4 ++--
 sys-boot/syslinux/syslinux-6.03.ebuild      | 6 +++---
 sys-boot/syslinux/syslinux-6.04_pre1.ebuild | 6 +++---
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/sys-boot/syslinux/syslinux-3.86.ebuild 
b/sys-boot/syslinux/syslinux-3.86.ebuild
index 79187cc..740c4e6 100644
--- a/sys-boot/syslinux/syslinux-3.86.ebuild
+++ b/sys-boot/syslinux/syslinux-3.86.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -47,7 +47,7 @@ src_unpack() {
 }
 
 src_compile() {
-       emake CC=$(tc-getCC) installer || die
+       emake CC="$(tc-getCC)" installer || die
 }
 
 src_install() {

diff --git a/sys-boot/syslinux/syslinux-4.07.ebuild 
b/sys-boot/syslinux/syslinux-4.07.ebuild
index 05495b3..8bfd278 100644
--- a/sys-boot/syslinux/syslinux-4.07.ebuild
+++ b/sys-boot/syslinux/syslinux-4.07.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -60,7 +60,7 @@ src_unpack() {
 }
 
 src_compile() {
-       emake CC=$(tc-getCC) installer || die
+       emake CC="$(tc-getCC)" installer || die
 }
 
 src_install() {

diff --git a/sys-boot/syslinux/syslinux-5.10.ebuild 
b/sys-boot/syslinux/syslinux-5.10.ebuild
index 90f4365..00c3a48 100644
--- a/sys-boot/syslinux/syslinux-5.10.ebuild
+++ b/sys-boot/syslinux/syslinux-5.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -63,7 +63,7 @@ src_prepare() {
 }
 
 src_compile() {
-       emake CC=$(tc-getCC) installer
+       emake CC="$(tc-getCC)" installer
 }
 
 src_install() {

diff --git a/sys-boot/syslinux/syslinux-6.03.ebuild 
b/sys-boot/syslinux/syslinux-6.03.ebuild
index fe34dc6..c4d25db 100644
--- a/sys-boot/syslinux/syslinux-6.03.ebuild
+++ b/sys-boot/syslinux/syslinux-6.03.ebuild
@@ -89,15 +89,15 @@ src_compile() {
        # build system abuses the LDFLAGS variable to pass arguments to ld
        unset LDFLAGS
        if [[ ! -z ${loaderarch} ]]; then
-               emake CC=$(tc-getCC) LD=$(tc-getLD) ${loaderarch}
+               emake CC="$(tc-getCC)" LD="$(tc-getLD)" ${loaderarch}
        fi
-       emake CC=$(tc-getCC) LD=$(tc-getLD) ${loaderarch} installer
+       emake CC="$(tc-getCC)" LD="$(tc-getLD)" ${loaderarch} installer
 }
 
 src_install() {
        # parallel install fails sometimes
        einfo "loaderarch=${loaderarch}"
-       emake -j1 LD=$(tc-getLD) INSTALLROOT="${D}" MANDIR=/usr/share/man bios 
${loaderarch} install
+       emake -j1 LD="$(tc-getLD)" INSTALLROOT="${D}" MANDIR=/usr/share/man 
bios ${loaderarch} install
        dodoc README NEWS doc/*.txt
 }
 

diff --git a/sys-boot/syslinux/syslinux-6.04_pre1.ebuild 
b/sys-boot/syslinux/syslinux-6.04_pre1.ebuild
index fe34dc6..c4d25db 100644
--- a/sys-boot/syslinux/syslinux-6.04_pre1.ebuild
+++ b/sys-boot/syslinux/syslinux-6.04_pre1.ebuild
@@ -89,15 +89,15 @@ src_compile() {
        # build system abuses the LDFLAGS variable to pass arguments to ld
        unset LDFLAGS
        if [[ ! -z ${loaderarch} ]]; then
-               emake CC=$(tc-getCC) LD=$(tc-getLD) ${loaderarch}
+               emake CC="$(tc-getCC)" LD="$(tc-getLD)" ${loaderarch}
        fi
-       emake CC=$(tc-getCC) LD=$(tc-getLD) ${loaderarch} installer
+       emake CC="$(tc-getCC)" LD="$(tc-getLD)" ${loaderarch} installer
 }
 
 src_install() {
        # parallel install fails sometimes
        einfo "loaderarch=${loaderarch}"
-       emake -j1 LD=$(tc-getLD) INSTALLROOT="${D}" MANDIR=/usr/share/man bios 
${loaderarch} install
+       emake -j1 LD="$(tc-getLD)" INSTALLROOT="${D}" MANDIR=/usr/share/man 
bios ${loaderarch} install
        dodoc README NEWS doc/*.txt
 }
 

Reply via email to