diff options
author | Sam James <sam@gentoo.org> | 2022-03-25 23:58:41 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-26 00:01:03 +0000 |
commit | 3719114eb3a48358e5125e86a67f43aa92d3b507 (patch) | |
tree | 196d3fab68ce2a1b155ebfed2cd341f88d7e8e6f | |
parent | www-client/dillo: [QA] fix tc-get* quoting (diff) | |
download | gentoo-3719114eb3a48358e5125e86a67f43aa92d3b507.tar.gz gentoo-3719114eb3a48358e5125e86a67f43aa92d3b507.tar.bz2 gentoo-3719114eb3a48358e5125e86a67f43aa92d3b507.zip |
sys-apps/pcsc-tools: [QA] fix tc-get* quoting
This can cause build problems for e.g. 32-bit (gcc -m32 ...)
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | sys-apps/pcsc-tools/pcsc-tools-1.5.6.ebuild | 4 | ||||
-rw-r--r-- | sys-apps/pcsc-tools/pcsc-tools-1.5.7.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys-apps/pcsc-tools/pcsc-tools-1.5.6.ebuild b/sys-apps/pcsc-tools/pcsc-tools-1.5.6.ebuild index add6360afa55..951db2412435 100644 --- a/sys-apps/pcsc-tools/pcsc-tools-1.5.6.ebuild +++ b/sys-apps/pcsc-tools/pcsc-tools-1.5.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -27,7 +27,7 @@ DOCS=( src_compile() { # explicitly only build the pcsc_scan application, or the man # pages will be gzipped first, and then unpacked. - emake pcsc_scan CC=$(tc-getCC) + emake pcsc_scan CC="$(tc-getCC)" } src_install() { diff --git a/sys-apps/pcsc-tools/pcsc-tools-1.5.7.ebuild b/sys-apps/pcsc-tools/pcsc-tools-1.5.7.ebuild index d3b2711916dc..18bbcf455751 100644 --- a/sys-apps/pcsc-tools/pcsc-tools-1.5.7.ebuild +++ b/sys-apps/pcsc-tools/pcsc-tools-1.5.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -27,7 +27,7 @@ DOCS=( src_compile() { # explicitly only build the pcsc_scan application, or the man # pages will be gzipped first, and then unpacked. - emake pcsc_scan CC=$(tc-getCC) + emake pcsc_scan CC="$(tc-getCC)" } src_install() { |