]> Git Repo - uclibc-ng.git/commitdiff
Fixup arch substitution
authorEric Andersen <[email protected]>
Mon, 4 Feb 2002 10:52:28 +0000 (10:52 -0000)
committerEric Andersen <[email protected]>
Mon, 4 Feb 2002 10:52:28 +0000 (10:52 -0000)
test/Rules.mak

index 8c945afe9c6df07f975060af76ae66b585b7d3b4..05f44c780ed3126544a987d848c5163109fd9acc 100644 (file)
@@ -10,8 +10,18 @@ include $(TESTDIR)../Config
 include $(TESTDIR)Config
 
 
-NATIVE_ARCH = ${shell uname -m | sed -e 's/i.86/i386/' -e 's/sparc.*/sparc/' \
-       -e 's/arm.*/arm/g' -e 's/m68k.*/m68k/' -e 's/ppc/powerpc/'}
+# Use NATIVE_ARCH here since running these test is not
+# even possible when cross compiling...
+NATIVE_ARCH = ${shell uname -m | sed \
+               -e 's/i.86/i386/' \
+               -e 's/sparc.*/sparc/' \
+               -e 's/arm.*/arm/g' \
+               -e 's/m68k.*/m68k/' \
+               -e 's/ppc/powerpc/g' \
+               -e 's/v850.*/v850/g' \
+               -e 's/sh[234].*/sh/' \
+               -e 's/mips.*/mips/' \
+               }
 
 # If you are running a cross compiler, you may want to set this
 # to something more interesting...
This page took 0.025208 seconds and 4 git commands to generate.