From: Eric Andersen Date: Thu, 5 Dec 2002 18:28:41 +0000 (-0000) Subject: Fix a silly oversight breaking cross compilation X-Git-Tag: 1_00_pre1~355 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=08c358b604d9aa5087c0ec226a94cc8df7bd2952;p=oweals%2Fbusybox.git Fix a silly oversight breaking cross compilation -Erik --- diff --git a/Rules.mak b/Rules.mak index 58c03b6e8..80f273672 100644 --- a/Rules.mak +++ b/Rules.mak @@ -87,7 +87,7 @@ ARFLAGS:=-r #-------------------------------------------------------- export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP ifeq ($(strip $(TARGET_ARCH)),) -TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \ +TARGET_ARCH=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \ -e 's/i.86/i386/' \ -e 's/sparc.*/sparc/' \ -e 's/arm.*/arm/g' \