summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCristian Othón Martínez Vera <cfuga@cfuga.mx>2024-11-26 14:01:20 -0600
committerSam James <sam@gentoo.org>2024-11-27 01:48:24 +0000
commitd2fec8be4938e2116e352d44787df51449c62f72 (patch)
tree0dc2f9a62f3a4ebbcb8f73e93c4ce8c46213006e
parentdb715cd1d7eee2114dce83f49355144183b2ab1d (diff)
downloadgentoo-d2fec8be4938e2116e352d44787df51449c62f72.tar.gz
gentoo-d2fec8be4938e2116e352d44787df51449c62f72.tar.bz2
gentoo-d2fec8be4938e2116e352d44787df51449c62f72.zip
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@cfuga.mx> Closes: https://github.com/gentoo/gentoo/pull/39484 Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--net-analyzer/nfdump/nfdump-1.7.4.ebuild2
1 files changed, 1 insertions, 1 deletions
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[@]}"
}