diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-10-10 19:19:24 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-10-10 19:19:24 +0000 |
commit | 9045e25a9b5281a9cfe1e55b274e35449925cbbe (patch) | |
tree | 14822516e8b1822aa3cbc8c4c160523031497590 /tools | |
parent | 5def1de5056a3d0072e59d3ffa1e0c133174f519 (diff) |
change OS to HOST_OS
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5030 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools')
-rw-r--r-- | tools/mtd-utils/Makefile | 2 | ||||
-rw-r--r-- | tools/sstrip/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/mtd-utils/Makefile b/tools/mtd-utils/Makefile index f67ccf758..bc15f0a67 100644 --- a/tools/mtd-utils/Makefile +++ b/tools/mtd-utils/Makefile @@ -19,7 +19,7 @@ PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION).orig include $(INCLUDE_DIR)/host-build.mk CFLAGS := $(HOSTCFLAGS) -O2 -I../include -ifneq ($(OS),Linux) +ifneq ($(HOST_OS),Linux) CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -I$(STAGING_DIR)/include-host -include getline.h -include endian.h endif diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index dc3ff4f6d..4e409e0d8 100644 --- a/tools/sstrip/Makefile +++ b/tools/sstrip/Makefile @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/host-build.mk PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/sstrip OS:=$(shell uname) -ifeq ($(OS),Darwin) +ifeq ($(HOST_OS),Darwin) CFLAGS += -I./include endif |