diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-09-23 08:49:34 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-09-23 08:49:34 +0000 |
commit | ecbec4244081f1a7c0446077445cc320572ff953 (patch) | |
tree | fc8538ecc2cc0a5669e44ae1a25ceb2a11f2f554 /tools/mkimage/Makefile | |
parent | e126bc23858d64e017cc57ddfd085679aa29edde (diff) |
tools/mkimage: avoid picking up unrelated /usr/include headers with the same name as internal header files (e.g. image.h), fixes #12232
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33519 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/mkimage/Makefile')
-rw-r--r-- | tools/mkimage/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/mkimage/Makefile b/tools/mkimage/Makefile index 373d9bebb..149aaa6f1 100644 --- a/tools/mkimage/Makefile +++ b/tools/mkimage/Makefile @@ -18,6 +18,13 @@ HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/u-boot-$(PKG_VERSION) include $(INCLUDE_DIR)/host-build.mk +define Host/Prepare + $(Host/Prepare/Default) + rm -f \ + $(HOST_BUILD_DIR)/include/errno.h \ + $(HOST_BUILD_DIR)/include/malloc.h +endef + define Host/Compile rm -f $(HOST_BUILD_DIR)/tools/.depend touch $(HOST_BUILD_DIR)/include/config.h |