diff options
author | 2024-08-02 12:22:52 +0100 | |
---|---|---|
committer | 2024-08-02 12:25:16 +0100 | |
commit | adecc0f58f3a727d04e8b397d0e00f0825fde901 (patch) | |
tree | 42b38938683137cc5a73c1eb759cbd03e607a637 /net-analyzer/openbsd-netcat | |
parent | net-misc/kafka-bin: drop 3.7.0 (diff) | |
download | gentoo-adecc0f58f3a727d04e8b397d0e00f0825fde901.tar.gz gentoo-adecc0f58f3a727d04e8b397d0e00f0825fde901.tar.bz2 gentoo-adecc0f58f3a727d04e8b397d0e00f0825fde901.zip |
net-analyzer/openbsd-netcat: Fix cross-compiling in 1.219_p1
It needs to call the correct pkg-config. Thanks to Krzesimir Nowak for
the suggestion.
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'net-analyzer/openbsd-netcat')
-rw-r--r-- | net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild b/net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild index afe9a5ea3fbf..d07c4bf17e73 100644 --- a/net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild +++ b/net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -47,7 +47,7 @@ src_prepare() { } src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" PKG_CONFIG="$(tc-getPKG_CONFIG)" } src_install() { |