From f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6 Mon Sep 17 00:00:00 2001 From: Grant Erickson Date: Tue, 6 May 2008 16:18:00 -0700 Subject: Fix Compilation Errors with 'tools/env/fw_printenv' In the current top-of-tree, 1.3.3.-rc2, the optional tool 'tools/env/fw_printenv' fails to compile for two reasons: 1) The header watchdog.h cannot be found. 2) The header zlib.h is picked up from the tool chain rather than the project causing a prototype conflict for crc32. This patch addresses both of these issues. Platforms Tested On: - AMCC "Kilauea" Signed-off-by: Grant Erickson --- tools/env/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/env') diff --git a/tools/env/Makefile b/tools/env/Makefile index ea2d5b5a0..9629ee58e 100644 --- a/tools/env/Makefile +++ b/tools/env/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk SRCS := $(obj)crc32.c fw_env.c fw_env_main.c HEADERS := fw_env.h -CPPFLAGS := -Wall -DUSE_HOSTCC +CPPFLAGS := -Wall -DUSE_HOSTCC -I$(SRCTREE)/include ifeq ($(MTD_VERSION),old) CPPFLAGS += -DMTD_OLD -- cgit v1.2.3