From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6D8361581F3 for ; Mon, 25 Nov 2024 21:56:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AEC15E07EA; Mon, 25 Nov 2024 21:56:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6DBCE07E6 for ; Mon, 25 Nov 2024 21:56:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B694833BEE8 for ; Mon, 25 Nov 2024 21:56:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 581D41898 for ; Mon, 25 Nov 2024 21:56:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732571594.8c75082750ede008f9f5a4596103ddd5381e0076.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nfdump/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nfdump/nfdump-1.7.4.ebuild X-VCS-Directories: net-analyzer/nfdump/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8c75082750ede008f9f5a4596103ddd5381e0076 X-VCS-Branch: master Date: Mon, 25 Nov 2024 21:56:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c093bf8e-b4ec-4040-82af-2a99661db4d2 X-Archives-Hash: 99c23117013cae4e5a3f0324dac2d36b commit: 8c75082750ede008f9f5a4596103ddd5381e0076 Author: Cristian Othón Martínez Vera cfuga mx> AuthorDate: Thu Nov 21 18:18:12 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Nov 25 21:53:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c750827 net-analyzer/nfdump: fix version 1.7.4 with USE="zstd" When ```configure``` receive the option ```--with-zstdpath``` without a path, pollutes the ```CPPFLAGS``` variable with a spurious 'yes/lib' string. This patch adds a path, like the ftconv ```USE``` flag does. Closes: https://bugs.gentoo.org/937022 Signed-off-by: Cristian Othón Martínez Vera cfuga.mx> Signed-off-by: Sam James 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 e0356c192572..9ba85b7fd6b2 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) + $(use_with zstd "zstdpath=/usr") ) econf "${myeconfargs[@]}" }