summaryrefslogtreecommitdiff
path: root/tools/sstrip
diff options
context:
space:
mode:
authorDaniel Dickinson <crazycshore@gmail.com>2010-12-12 05:02:41 +0000
committerDaniel Dickinson <crazycshore@gmail.com>2010-12-12 05:02:41 +0000
commit9c244fdd12f60a9d63da88616a4eb88c6a878cd4 (patch)
treeb1853d03163764850b33ae45acf6d6b04ebb28b3 /tools/sstrip
parent062a1617dbff8d3a233651c73e319ec1a2a45045 (diff)
downloadmtk-20170518-9c244fdd12f60a9d63da88616a4eb88c6a878cd4.zip
mtk-20170518-9c244fdd12f60a9d63da88616a4eb88c6a878cd4.tar.gz
mtk-20170518-9c244fdd12f60a9d63da88616a4eb88c6a878cd4.tar.bz2
sstrip: Correct include path to really get endian.h
SVN-Revision: 24512
Diffstat (limited to 'tools/sstrip')
-rw-r--r--tools/sstrip/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile
index d93e761..0d3576a 100644
--- a/tools/sstrip/Makefile
+++ b/tools/sstrip/Makefile
@@ -11,7 +11,7 @@ PKG_NAME:=sstrip
include $(INCLUDE_DIR)/host-build.mk
define Host/Compile
- $(CC) $(HOST_CFLAGS) -I./include -include endian.h -o $(HOST_BUILD_DIR)/sstrip src/sstrip.c
+ $(CC) $(HOST_CFLAGS) -I$(TOPDIR)/tools/include -include endian.h -o $(HOST_BUILD_DIR)/sstrip src/sstrip.c
endef
define Host/Install