From 0881365ea0b46c9ca04eab33ec769a24402d93d4 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Wed, 7 May 2014 12:05:14 +0200 Subject: [PATCH] musl: fixed to also force reinstall of arch specific headers This fixes the issue that arch specific headers will not appear in the flist file when cross-compiling, and thus being missing in the resulting binary package. --- base/musl/musl.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/musl/musl.conf b/base/musl/musl.conf index 78fe9bd0a..99943ea3b 100644 --- a/base/musl/musl.conf +++ b/base/musl/musl.conf @@ -57,5 +57,5 @@ if [ "$SDECFG_LIBC" == "musl" ]; then fi # always install the headers even if already present in the sandbox -hook_add postpatch 9 "touch include/*.h include/*/*.h" +hook_add postpatch 9 "touch include/*.h include/*/*.h arch/$musl_arch/*.h arch/$musl_arch/*/*.h" var_append makeinstopt ' ' "install-headers"