diff options
author | Krzesimir Nowak <knowak@microsoft.com> | 2024-08-06 10:39:06 +0200 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2024-08-06 16:35:47 +0200 |
commit | 8b99ab0f6efd23c6125975d506a9f79af70dfdde (patch) | |
tree | d805f0b86471eabc760fcff99ba5dc66ddaa82e4 /dev-embedded/u-boot-tools | |
parent | kde-plasma/xdg-desktop-portal-kde: drop 6.1.3 (diff) | |
download | gentoo-8b99ab0f6efd23c6125975d506a9f79af70dfdde.tar.gz gentoo-8b99ab0f6efd23c6125975d506a9f79af70dfdde.tar.bz2 gentoo-8b99ab0f6efd23c6125975d506a9f79af70dfdde.zip |
dev-embedded/u-boot-tools: Add a missing dependency
Fixes a build in Flatcar:
x86_64-pc-linux-gnu-gcc -Wp,-MD,tools/.mkeficapsule.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -O2 -pipe -std=gnu11 -DCONFIG_FIT_SIGNATURE -DCONFIG_FIT_SIGNATURE_MAX_SIZE=0xffffffff -DCONFIG_FIT_CIPHER -include ./include/compiler.h -idirafterinclude -idirafter./arch/sandbox/include -I./scripts/dtc/libfdt -I./tools -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -D_GNU_SOURCE -I/usr/include/uuid -Wl,-O2 -Wl,--as-needed -o tools/mkeficapsule tools/mkeficapsule.c -lgnutls -luuid
tools/mkeficapsule.c:21:10: fatal error: gnutls/gnutls.h: No such file or directory
21 | #include <gnutls/gnutls.h>
| ^~~~~~~~~~~~~~~~~
compilation terminated.
The build system silently ignores missing gnutls by adding nothing to
`CFLAGS` and adding `-lgnutls` to `LDLIBS`.
Signed-off-by: Krzesimir Nowak <knowak@microsoft.com>
Closes: https://github.com/gentoo/gentoo/pull/37991
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'dev-embedded/u-boot-tools')
-rw-r--r-- | dev-embedded/u-boot-tools/u-boot-tools-2024.01.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dev-embedded/u-boot-tools/u-boot-tools-2024.01.ebuild b/dev-embedded/u-boot-tools/u-boot-tools-2024.01.ebuild index f4ac4ba3e697..968110756c2a 100644 --- a/dev-embedded/u-boot-tools/u-boot-tools-2024.01.ebuild +++ b/dev-embedded/u-boot-tools/u-boot-tools-2024.01.ebuild @@ -20,7 +20,10 @@ SLOT="0" KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86" IUSE="envtools" -RDEPEND="dev-libs/openssl:=" +RDEPEND=" + dev-libs/openssl:= + net-libs/gnutls:= +" DEPEND="${RDEPEND}" BDEPEND=" dev-lang/swig |