Andrew Geissler | ac970dd | 2021-02-12 15:32:45 -0600 | [diff] [blame] | 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 | |