diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 18:50:32 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 18:51:32 +0000 |
commit | 442508ffa429a842db078f06ca8c025ddd5c7479 (patch) | |
tree | 96673202dfe008d10f219ff20b081035aa330dc8 /sci-physics | |
parent | sci-libs/xgks-pmel: [QA] fix tc-get* quoting (diff) | |
download | gentoo-442508ffa429a842db078f06ca8c025ddd5c7479.tar.gz gentoo-442508ffa429a842db078f06ca8c025ddd5c7479.tar.bz2 gentoo-442508ffa429a842db078f06ca8c025ddd5c7479.zip |
sci-physics/pythia: [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 'sci-physics')
-rw-r--r-- | sci-physics/pythia/pythia-8.2.45.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci-physics/pythia/pythia-8.2.45.ebuild b/sci-physics/pythia/pythia-8.2.45.ebuild index 64f18f325b58..b46fed8fb5df 100644 --- a/sci-physics/pythia/pythia-8.2.45.ebuild +++ b/sci-physics/pythia/pythia-8.2.45.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -107,7 +107,7 @@ src_configure() { # homemade configure script ./configure \ --arch=Linux \ - --cxx=$(tc-getCXX) \ + --cxx="$(tc-getCXX)" \ --enable-shared \ --prefix="${EPREFIX}/usr" \ --prefix-lib="$(get_libdir)" \ |