1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 09:11:59 +03:00

change OS to HOST_OS

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5030 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2006-10-10 19:19:24 +00:00
parent 5def1de505
commit 9045e25a9b
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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