Add i586 i686 to Makefile
authorMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Wed, 10 Jun 2009 18:47:02 +0000 (14:47 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Wed, 10 Jun 2009 18:47:02 +0000 (14:47 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Makefile
Makefile64

index 917aa1a31b6be0d90b974da8d1759f55123cd239..41319140b38b5d0d1426215471772af4712cc6d0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,10 @@ HOSTTYPE=$(shell uname -m)
 ifeq ("${HOSTTYPE}","x86_64")
 ARCHTYPE=x86
 endif
-ifeq ("${HOSTTYPE}","i486")
+ifeq ("${HOSTTYPE}","i586")
+ARCHTYPE=x86
+endif
+ifeq ("${HOSTTYPE}","i686")
 ARCHTYPE=x86
 endif
 ifeq ("${HOSTTYPE}","powerpc")
index c484a5ebd4adbf311e82d5c6af4f0fcd0b4afb41..acb4a26c218ed114170a9a08c5e44a8166cb96c6 100644 (file)
@@ -8,9 +8,6 @@ HOSTTYPE=$(shell uname -m)
 ifeq ("${HOSTTYPE}","x86_64")
 ARCHTYPE=x86
 endif
-ifeq ("${HOSTTYPE}","i486")
-ARCHTYPE=x86
-endif
 ifeq ("${HOSTTYPE}","powerpc")
 ARCHTYPE=ppc
 endif
This page took 0.026679 seconds and 4 git commands to generate.