diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 18:42:47 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 18:43:43 +0000 |
commit | f15b3510f60966e225b49ae6d4844d1a95c6e149 (patch) | |
tree | 20ab3e4c2e391a3102f18e8117da30d65b04a6fc /net-analyzer/argus-clients | |
parent | net-analyzer/nmap: [QA] fix tc-get* quoting (diff) | |
download | gentoo-f15b3510f60966e225b49ae6d4844d1a95c6e149.tar.gz gentoo-f15b3510f60966e225b49ae6d4844d1a95c6e149.tar.bz2 gentoo-f15b3510f60966e225b49ae6d4844d1a95c6e149.zip |
net-analyzer/argus-clients: [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 'net-analyzer/argus-clients')
-rw-r--r-- | net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild b/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild index f27f15cd9303..55425715a1ae 100644 --- a/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild +++ b/net-analyzer/argus-clients/argus-clients-3.0.8.3.ebuild @@ -63,7 +63,7 @@ src_configure() { src_compile() { emake \ CCOPT="${CFLAGS} ${LDFLAGS}" \ - RANLIB=$(tc-getRANLIB) \ + RANLIB="$(tc-getRANLIB)" \ CURSESLIB="$( $(tc-getPKG_CONFIG) --libs ncurses)" } |