[Python-checkins] cpython (merge 3.3 -> default): - Issue #16292: Improve a comment for cross building in configure.ac

matthias.klose python-checkins at python.org
Fri Jan 25 14:44:34 CET 2013


http://hg.python.org/cpython/rev/4feff8c8250b
changeset:   81717:4feff8c8250b
parent:      81715:172fec65c882
parent:      81716:4c97d2d464ad
user:        doko at python.org
date:        Fri Jan 25 14:44:20 2013 +0100
summary:
  - Issue #16292: Improve a comment for cross building in configure.ac

files:
  configure    |  6 +++---
  configure.ac |  6 +++---
  2 files changed, 6 insertions(+), 6 deletions(-)


diff --git a/configure b/configure
--- a/configure
+++ b/configure
@@ -3249,9 +3249,9 @@
 then
     # avoid using uname for cross builds
     if test "$cross_compiling" = yes; then
-       # ac_sys_system and ac_sys_release are only used for setting
-       # `define_xopen_source' in the case statement below. For the
-       # current supported cross builds, this macro is not adjusted.
+       # ac_sys_system and ac_sys_release are used for setting
+       # a lot of different things including 'define_xopen_source'
+       # in the case statement below.
 	case "$host" in
 	*-*-linux*)
 		ac_sys_system=Linux
diff --git a/configure.ac b/configure.ac
--- a/configure.ac
+++ b/configure.ac
@@ -352,9 +352,9 @@
 then
     # avoid using uname for cross builds
     if test "$cross_compiling" = yes; then
-       # ac_sys_system and ac_sys_release are only used for setting
-       # `define_xopen_source' in the case statement below. For the
-       # current supported cross builds, this macro is not adjusted.
+       # ac_sys_system and ac_sys_release are used for setting
+       # a lot of different things including 'define_xopen_source'
+       # in the case statement below.
 	case "$host" in
 	*-*-linux*)
 		ac_sys_system=Linux

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list