[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [12887] trunk/blender/source/tools/guess/ guessconfig: updated guessconfig for solaris-x86_64 name change

Campbell Barton ideasman42 at gmail.com
Fri Dec 14 18:28:53 CET 2007


Revision: 12887
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=12887
Author:   campbellbarton
Date:     2007-12-14 18:28:53 +0100 (Fri, 14 Dec 2007)

Log Message:
-----------
updated guessconfig for solaris-x86_64 name change

Modified Paths:
--------------
    trunk/blender/source/tools/guess/guessconfig

Modified: trunk/blender/source/tools/guess/guessconfig
===================================================================
--- trunk/blender/source/tools/guess/guessconfig	2007-12-14 17:21:32 UTC (rev 12886)
+++ trunk/blender/source/tools/guess/guessconfig	2007-12-14 17:28:53 UTC (rev 12887)
@@ -79,7 +79,11 @@
 if [ "$OS" = "solaris" ]; then
     # Adds the address space to the cpu if its 64bit
 	if [ `isainfo -b` = "64" ]; then
-		CPU="$CPU"_64
+		if [ "$CPU" = "i386" ]; then
+			CPU=x86_64
+		else	# will probably be sparc in this case
+			CPU="$CPU"_64
+		fi
 	fi
 fi
 





More information about the Bf-blender-cvs mailing list