From 77085725d982a81f6c695dc44e056affc8e7b93a Mon Sep 17 00:00:00 2001 From: Piraty Date: Sun, 16 Aug 2020 10:53:13 +0200 Subject: [PATCH] u-boot-tools: remove stddef hack for musl Fixed in 849570a814f0a48cf1612f1ae0ecf3e33d1db7c3 --- srcpkgs/u-boot-tools/template | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/srcpkgs/u-boot-tools/template b/srcpkgs/u-boot-tools/template index 0c166b42dc9..0859350f18a 100644 --- a/srcpkgs/u-boot-tools/template +++ b/srcpkgs/u-boot-tools/template @@ -20,7 +20,6 @@ if [ "$CROSS_BUILD" ]; then fi post_extract() { - touch include/stddef.h # musl hack vsed '1itypedef unsigned long ulong;' \ -i include/image.h \ -i include/env.h \ @@ -32,6 +31,12 @@ do_configure() { make ${makejobs} ${make_build_args} tools-only_defconfig } +do_check() { + # skip tests for now. requires some gymnastics to make the python scripts + # find libfdt. the most useful target appears to be "make tcheck" + : ; +} + do_install() { ln -sf fw_printenv tools/env/fw_setenv for x in dumpimage fdtgrep fit_check_sign fit_info gen_eth_addr \