aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2017-07-26 18:21:59 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2017-07-26 22:35:05 +0900
commit5954298d27af663e225d41fe6c6208d3a0a1b8dd (patch)
treee022a91e7c246ca36cc1ea64a80ff1356b55a635 /tools
parentaa965e1583349b36ce7edd2b3fe9f1f461ef8b23 (diff)
downloadtrusted-firmware-a-5954298d27af663e225d41fe6c6208d3a0a1b8dd.tar.gz
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 <yamada.masahiro@socionext.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/fiptool/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/fiptool/Makefile b/tools/fiptool/Makefile
index 5e2ecc13f7..e0e3923604 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