diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2016-06-09 18:11:57 +0200 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2016-06-09 18:12:52 +0200 |
commit | 2c743a1c520e5ecf2793d63a2715b0f6fe7f7287 (patch) | |
tree | fde13c68331fe1f6f3943a65179b30c4a56cdaf7 /sys-boot/syslinux/syslinux-3.86.ebuild | |
parent | virtual/pypy: Add 5.3.0 (diff) | |
download | gentoo-2c743a1c520e5ecf2793d63a2715b0f6fe7f7287.tar.gz gentoo-2c743a1c520e5ecf2793d63a2715b0f6fe7f7287.tar.bz2 gentoo-2c743a1c520e5ecf2793d63a2715b0f6fe7f7287.zip |
sys-boot/syslinux: fix quoting for toolchain functions
Bug: https://bugs.gentoo.org/show_bug.cgi?id=585186
Package-Manager: portage-2.2.28
Diffstat (limited to 'sys-boot/syslinux/syslinux-3.86.ebuild')
-rw-r--r-- | sys-boot/syslinux/syslinux-3.86.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-boot/syslinux/syslinux-3.86.ebuild b/sys-boot/syslinux/syslinux-3.86.ebuild index 79187cc0a5af..740c4e6fc85b 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() { |