From 0d560e87ee22421a29d5e8256378d72a43207e42 Mon Sep 17 00:00:00 2001 From: David Karoly Date: Tue, 28 Jun 2022 12:05:53 +0200 Subject: [PATCH] kernel/lib: add missing musl include This is needed to fix the build on arm as atomic_arch.h relies on musl libc.h and features.h Change-Id: I5bfa32b7b0fa1662cc9ee8cd8fa3037d8a5e2431 Reviewed-on: https://review.haiku-os.org/c/haiku/+/5418 Reviewed-by: Adrien Destugues Tested-by: Commit checker robot --- src/system/kernel/lib/Jamfile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/system/kernel/lib/Jamfile b/src/system/kernel/lib/Jamfile index 0d5f7ffcd6..b9f80d4c4e 100644 --- a/src/system/kernel/lib/Jamfile +++ b/src/system/kernel/lib/Jamfile @@ -52,6 +52,7 @@ local muslSources = ; SourceHdrs $(muslSources) : + [ FDirName $(posixSources) musl include ] [ FDirName $(posixSources) musl internal ] [ FDirName $(posixSources) musl arch $(TARGET_KERNEL_ARCH_DIR) ] ;