diff options
Diffstat (limited to 'meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc-2.0.2/0001-make-Add-compiler-includes-in-cflags.patch')
-rw-r--r-- | meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc-2.0.2/0001-make-Add-compiler-includes-in-cflags.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc-2.0.2/0001-make-Add-compiler-includes-in-cflags.patch b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc-2.0.2/0001-make-Add-compiler-includes-in-cflags.patch new file mode 100644 index 0000000000..778d830128 --- /dev/null +++ b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc-2.0.2/0001-make-Add-compiler-includes-in-cflags.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 884ec4c654f1d07a387fdc1dae5640606369f254 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sat, 6 Feb 2021 10:56:36 -0800 | ||
4 | Subject: [PATCH] make: Add compiler includes in cflags | ||
5 | |||
6 | Fixes | ||
7 | In file included from ../git/ubi-utils/ubiformat.c:47: | ||
8 | | ../git/include/common.h:22:10: fatal error: 'stdbool.h' file not found | ||
9 | | #include <stdbool.h> | ||
10 | | ^~~~~~~~~~~ | ||
11 | |||
12 | Upstream-Status: Pending | ||
13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
14 | --- | ||
15 | Makefile.am | 1 + | ||
16 | 1 file changed, 1 insertion(+) | ||
17 | |||
18 | diff --git a/Makefile.am b/Makefile.am | ||
19 | index 5a6e77c..f0003d5 100644 | ||
20 | --- a/Makefile.am | ||
21 | +++ b/Makefile.am | ||
22 | @@ -9,6 +9,7 @@ endif | ||
23 | if WITHOUT_LZO | ||
24 | AM_CPPFLAGS += -DWITHOUT_LZO | ||
25 | endif | ||
26 | +AM_CPPFLAGS += -I$(shell $(CC) -print-file-name=include) | ||
27 | |||
28 | sbin_PROGRAMS = | ||
29 | sbin_SCRIPTS = | ||
30 | -- | ||
31 | 2.30.0 | ||
32 | |||