diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-05 18:28:41 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-05 18:28:41 +0000 |
commit | 9709c7b1934829a3386c60bfa4d231303184b373 (patch) | |
tree | 8106d99796a7523ad9eedf35530fe44ccfacd717 | |
parent | e40a650628ce6b03e67c4c6d96ea396e7bd2afb3 (diff) | |
download | busybox-w32-9709c7b1934829a3386c60bfa4d231303184b373.tar.gz busybox-w32-9709c7b1934829a3386c60bfa4d231303184b373.tar.bz2 busybox-w32-9709c7b1934829a3386c60bfa4d231303184b373.zip |
Fix a silly oversight breaking cross compilation
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@6105 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | Rules.mak | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -87,7 +87,7 @@ ARFLAGS:=-r | |||
87 | #-------------------------------------------------------- | 87 | #-------------------------------------------------------- |
88 | export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP | 88 | export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP |
89 | ifeq ($(strip $(TARGET_ARCH)),) | 89 | ifeq ($(strip $(TARGET_ARCH)),) |
90 | TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \ | 90 | TARGET_ARCH=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \ |
91 | -e 's/i.86/i386/' \ | 91 | -e 's/i.86/i386/' \ |
92 | -e 's/sparc.*/sparc/' \ | 92 | -e 's/sparc.*/sparc/' \ |
93 | -e 's/arm.*/arm/g' \ | 93 | -e 's/arm.*/arm/g' \ |