diff options
author | Sam James <sam@gentoo.org> | 2022-03-25 23:56:06 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-26 00:00:59 +0000 |
commit | 2315df4ae43d1d0c1d2bff178a34f4c3a8cdb7aa (patch) | |
tree | 6811faf448e368f26b339bb44c5ea4859b2a23e6 /dev-libs/ntl | |
parent | dev-libs/libaio: [QA] fix tc-get* quoting (diff) | |
download | gentoo-2315df4ae43d1d0c1d2bff178a34f4c3a8cdb7aa.tar.gz gentoo-2315df4ae43d1d0c1d2bff178a34f4c3a8cdb7aa.tar.bz2 gentoo-2315df4ae43d1d0c1d2bff178a34f4c3a8cdb7aa.zip |
dev-libs/ntl: [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-libs/ntl')
-rw-r--r-- | dev-libs/ntl/ntl-11.5.1-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-libs/ntl/ntl-11.5.1-r1.ebuild b/dev-libs/ntl/ntl-11.5.1-r1.ebuild index b5dd020eb133..babd1e7a505c 100644 --- a/dev-libs/ntl/ntl-11.5.1-r1.ebuild +++ b/dev-libs/ntl/ntl-11.5.1-r1.ebuild @@ -34,8 +34,8 @@ src_unpack() { src_configure() { # The DoConfig script builds its own libtool, but doesn't # really try to set up the build environment (bug 718892). - export CC=$(tc-getCC) - export CXX=$(tc-getCXX) + export CC="$(tc-getCC)" + export CXX="$(tc-getCXX)" # Currently the build system can build a static library or both # static and shared libraries, but not only shared libraries. The |