diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-09-27 13:11:47 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-09-27 13:11:47 +0000 |
commit | 0199c0e95cfbd490a1c39ac744fdb68149c73977 (patch) | |
tree | 6f8fcd0c80021a028aade66b2f28841258ea24cb | |
parent | ce0513f81f252026fb705a2bea63cbe1bd10359a (diff) | |
download | upstream-0199c0e95cfbd490a1c39ac744fdb68149c73977.tar.gz upstream-0199c0e95cfbd490a1c39ac744fdb68149c73977.tar.bz2 upstream-0199c0e95cfbd490a1c39ac744fdb68149c73977.zip |
fix GNU_HOST_NAME for non-linux machines
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4865 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ HOST_ARCH:=$(shell $(HOSTCC) -dumpmachine | sed -e s'/-.*//' \ -e 's/i[3-9]86/i386/' \ ) -GNU_HOST_NAME:=$(HOST_ARCH)-pc-linux-gnu +GNU_HOST_NAME:=$(shell $(HOSTCC) -dumpmachine) TARGET_CONFIGURE_OPTS:= \ AR=$(TARGET_CROSS)ar \ |