]> granicus.if.org Git - python/commitdiff
Temporary checkin to get configure to report more
authorMark Dickinson <dickinsm@gmail.com>
Fri, 23 May 2008 04:22:50 +0000 (04:22 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Fri, 23 May 2008 04:22:50 +0000 (04:22 +0000)
information about the processor on the Debian/alpha
buildbot.  (I'm still trying to track down the cause
of the test_math failures for this machine.)  This
checkin will be reverted within the next 48 hours.

configure
configure.in

index 6c19b2c458c1e3d80046894f145dda0156037467..28275ce8c935c9edfd505ea65b56c33a49e28398 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 62499 .
+# From configure.in Revision: 62644 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for python 2.6.
 #
@@ -2184,6 +2184,17 @@ ac_sys_machine=`uname -m`
 { echo "$as_me:$LINENO: result: $ac_sys_machine" >&5
 echo "${ECHO_T}$ac_sys_machine" >&6; }
 
+# temporary check to find out which exact processor
+# is in the Debian/alpha buildbot.
+case $ac_sys_system in
+    Linux*)
+        case $ac_sys_machine in alpha*)
+            cat /proc/cpuinfo
+            ;;
+        esac
+    ;;
+esac
+
 # checks for alternative programs
 
 # compiler flags are generated in two sets, BASECFLAGS and OPT.  OPT is just
index bc9a02e9611530db665f362d5f13103abfab8bba..a7c96f90d00fa07c7007fa2a343cd86b6e983d1d 100644 (file)
@@ -350,6 +350,17 @@ AC_MSG_CHECKING(machine type as reported by uname -m)
 ac_sys_machine=`uname -m`
 AC_MSG_RESULT($ac_sys_machine)
 
+# temporary check to find out which exact processor
+# is in the Debian/alpha buildbot.
+case $ac_sys_system in
+    Linux*)
+        case $ac_sys_machine in alpha*)
+            cat /proc/cpuinfo
+            ;;
+        esac
+    ;;
+esac
+
 # checks for alternative programs
 
 # compiler flags are generated in two sets, BASECFLAGS and OPT.  OPT is just