commit: d2fec8be4938e2116e352d44787df51449c62f72 Author: Cristian Othón Martínez Vera <cfuga <AT> cfuga <DOT> mx> AuthorDate: Tue Nov 26 20:01:20 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Nov 27 01:48:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2fec8be
net-analyzer/nfdump: fix compilation with USE="-zstd" My previous fix works well with ```USE="zstd"```, but it breaks the compilation with that ``USE``` flag disabled. Closes: https://bugs.gentoo.org/944974 Signed-off-by: Cristian Othón Martínez Vera <cfuga <AT> cfuga.mx> Closes: https://github.com/gentoo/gentoo/pull/39484 Signed-off-by: Sam James <sam <AT> gentoo.org> net-analyzer/nfdump/nfdump-1.7.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-analyzer/nfdump/nfdump-1.7.4.ebuild b/net-analyzer/nfdump/nfdump-1.7.4.ebuild index ef05ba0e4b6a..9a070e2a7643 100644 --- a/net-analyzer/nfdump/nfdump-1.7.4.ebuild +++ b/net-analyzer/nfdump/nfdump-1.7.4.ebuild @@ -76,7 +76,7 @@ src_configure() { $(use_enable nsel) $(use_enable readpcap) $(use_enable sflow) - $(use_with zstd "zstdpath=${EPREFIX}/usr") + $(use_with zstd "zstdpath" "${EPREFIX}/usr") ) econf "${myeconfargs[@]}" }
