From b95a5190ba9284a06f9d0c56589bcb4080b4710a Mon Sep 17 00:00:00 2001 From: Jan Kundrát Date: Fri, 3 Nov 2017 03:06:35 +0100 Subject: Do not attempt to use the systemwide libfdt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit U-Boot bundles a patched copy of libfdt, so it's wrong to attempt to include it . This breaks the build for me when I have dtc fully installed in my host -- as happened earlier tonight with Buildroot, for example. There are several other occurrences throughout the code where ' include style is being used -- IMHO wrongly. Signed-off-by: Jan Kundrát --- include/fdt.h | 2 +- include/libfdt.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/fdt.h b/include/fdt.h index 7ead62e7771..f40b56c7554 100644 --- a/include/fdt.h +++ b/include/fdt.h @@ -1 +1 @@ -#include <../lib/libfdt/fdt.h> +#include "../lib/libfdt/fdt.h" diff --git a/include/libfdt.h b/include/libfdt.h index 10296a21add..7ba13e634b6 100644 --- a/include/libfdt.h +++ b/include/libfdt.h @@ -1 +1 @@ -#include <../lib/libfdt/libfdt.h> +#include "../lib/libfdt/libfdt.h" -- cgit v1.3.1