Browse Source

tools/sstrip: remove redundant -I flag that breaks build on some x86_64 linux hosts

SVN-Revision: 34455
Felix Fietkau 13 years ago
parent
commit
697cbb6d2f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/sstrip/Makefile

+ 1 - 1
tools/sstrip/Makefile

@@ -11,7 +11,7 @@ PKG_NAME:=sstrip
 include $(INCLUDE_DIR)/host-build.mk
 
 define Host/Compile
-	$(HOSTCC) $(HOST_CFLAGS) -I../include -include endian.h $(HOST_STATIC_LINKING) -o $(HOST_BUILD_DIR)/sstrip src/sstrip.c
+	$(HOSTCC) $(HOST_CFLAGS) -include endian.h $(HOST_STATIC_LINKING) -o $(HOST_BUILD_DIR)/sstrip src/sstrip.c
 endef
 
 define Host/Install