From 5954298d27af663e225d41fe6c6208d3a0a1b8dd Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Wed, 26 Jul 2017 18:21:59 +0900 Subject: [PATCH] fiptool: remove unneeded -I. include path All local headers in tools/fiptool are included by #include "..." notation instead of #include <...>, so there is no need to add the local directory to to the header search path. Signed-off-by: Masahiro Yamada --- tools/fiptool/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fiptool/Makefile b/tools/fiptool/Makefile index 5e2ecc13f..e0e392360 100644 --- a/tools/fiptool/Makefile +++ b/tools/fiptool/Makefile @@ -27,7 +27,7 @@ else Q := endif -INCLUDE_PATHS := -I. -I../../include/tools_share +INCLUDE_PATHS := -I../../include/tools_share HOSTCC ?= gcc