diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:45:25 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:45:25 +0000 |
commit | 630ad25aa869ba84f007e3a816a13e93621046f1 (patch) | |
tree | 3d6f269a489c2833b9c0c91015de2c92f9583ffe /dev-tcltk | |
parent | dev-scheme/owl-lisp: [QA] fix tc-get* quoting (diff) | |
download | gentoo-630ad25aa869ba84f007e3a816a13e93621046f1.tar.gz gentoo-630ad25aa869ba84f007e3a816a13e93621046f1.tar.bz2 gentoo-630ad25aa869ba84f007e3a816a13e93621046f1.zip |
dev-tcltk/tclpython: [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 'dev-tcltk')
-rw-r--r-- | dev-tcltk/tclpython/tclpython-5.0-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-tcltk/tclpython/tclpython-5.0-r1.ebuild b/dev-tcltk/tclpython/tclpython-5.0-r1.ebuild index 92a9fda120d9..183afd5105c4 100644 --- a/dev-tcltk/tclpython/tclpython-5.0-r1.ebuild +++ b/dev-tcltk/tclpython/tclpython-5.0-r1.ebuild @@ -25,13 +25,13 @@ RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) src_compile() { - emake PKG_NAME=tclpython3 CC=$(tc-getCC) \ + emake PKG_NAME=tclpython3 CC="$(tc-getCC)" \ MYCFLAGS="${CFLAGS}" \ MYLDFLAGS="${LDFLAGS} $(python_get_library_path)" } src_test() { - emake PKG_NAME=tclpython3 CC=$(tc-getCC) test + emake PKG_NAME=tclpython3 CC="$(tc-getCC)" test } src_install() { |