Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] aufs-util: fix build error for missing linux header
@ 2023-10-31 23:03 Brandon Maier via buildroot
  2024-10-26 16:46 ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 2+ messages in thread
From: Brandon Maier via buildroot @ 2023-10-31 23:03 UTC (permalink / raw)
  To: buildroot; +Cc: Kalpesh Panchal, Brandon Maier

From: Kalpesh Panchal <kalpesh.panchal2@collins.com>

added missing linux header path to fix below build error:

- $(LINUX_DIR)/include/uapi/linux/stddef.h:5:10:fatal error: linux/compiler_types.h: No such file or directory

Signed-off-by: Kalpesh Panchal <kalpesh.panchal2@collins.com>
Signed-off-by: Brandon Maier <brandon.maier@collins.com>
---
 package/aufs-util/aufs-util.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/aufs-util/aufs-util.mk b/package/aufs-util/aufs-util.mk
index 32f3bca151..c334b8c014 100644
--- a/package/aufs-util/aufs-util.mk
+++ b/package/aufs-util/aufs-util.mk
@@ -21,11 +21,13 @@ AUFS_UTIL_DEPENDENCIES = linux
 AUFS_UTIL_HOST_CPPFLAGS = \
 	$(HOST_CPPFLAGS) \
 	-I$(LINUX_DIR)/include/uapi \
+	-I$(LINUX_DIR)/include \
 	-D__user=
 
 AUFS_UTIL_CPPFLAGS = \
 	$(TARGET_CPPFLAGS) \
 	-I$(LINUX_DIR)/include/uapi \
+	-I$(LINUX_DIR)/include \
 	-D__user=
 
 # rdu64 is supposed to provide the LFS variant of readdir(),
-- 
2.41.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-10-26 16:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-31 23:03 [Buildroot] [PATCH 1/1] aufs-util: fix build error for missing linux header Brandon Maier via buildroot
2024-10-26 16:46 ` Thomas Petazzoni via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox