diff options
author | 2022-03-19 23:39:02 +0000 | |
---|---|---|
committer | 2022-03-19 23:39:02 +0000 | |
commit | 8cfd32115841b979d2893471227cc9c9689f72a7 (patch) | |
tree | ac135c482085fea46232d14f3a0a76fdb1acae94 /media-sound | |
parent | media-sound/sndpeek: [QA] fix tc-get* quoting (diff) | |
download | gentoo-8cfd32115841b979d2893471227cc9c9689f72a7.tar.gz gentoo-8cfd32115841b979d2893471227cc9c9689f72a7.tar.bz2 gentoo-8cfd32115841b979d2893471227cc9c9689f72a7.zip |
media-sound/ptabtools: [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>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/ptabtools/ptabtools-0.5.0.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media-sound/ptabtools/ptabtools-0.5.0.ebuild b/media-sound/ptabtools/ptabtools-0.5.0.ebuild index 55e4bca6c2ea..15641a2b9e4c 100644 --- a/media-sound/ptabtools/ptabtools-0.5.0.ebuild +++ b/media-sound/ptabtools/ptabtools-0.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -24,7 +24,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${P}-makefile.patch ) src_compile() { - emake AR=$(tc-getAR) + emake AR="$(tc-getAR)" } src_install() { |