* configure.ac: JAVA_ARCH is different for mipsel.
authorChristian Thalinger <twisti@complang.tuwien.ac.at>
Sat, 11 Oct 2008 20:32:38 +0000 (22:32 +0200)
committerChristian Thalinger <twisti@complang.tuwien.ac.at>
Sat, 11 Oct 2008 20:32:38 +0000 (22:32 +0200)
configure.ac

index a9572aad24d93a69bb131314587dec47abcbd850..3f0c8a4577d96c79b00231bc5f435a516455f253 100644 (file)
@@ -67,13 +67,18 @@ m68k )
     JAVA_ARCH="m68k"
     ;;
 
-mips | mipsel )
+mips )
     ARCH_DIR="mips"
     ARCH_FLAGS="-D__MIPS__"
-    dnl Is this correct for mipsel?
     JAVA_ARCH="mips"
     ;;
 
+mipsel )
+    ARCH_DIR="mips"
+    ARCH_FLAGS="-D__MIPS__"
+    JAVA_ARCH="mipsel"
+    ;;
+
 powerpc )
     ARCH_DIR="powerpc"
     ARCH_FLAGS="-m32 -D__POWERPC__"