diff options
author | doko@python.org <doko@python.org> | 2013-01-25 13:44:00 (GMT) |
---|---|---|
committer | doko@python.org <doko@python.org> | 2013-01-25 13:44:00 (GMT) |
commit | 44bbbdab67b34144edefdd8b817d3489676e7e40 (patch) | |
tree | ea8f2ba69d5ad9f983a520565f2635045f17dd38 | |
parent | 9731330d6f4d63d6d57c8e99c8d11ef1def42858 (diff) | |
download | cpython-44bbbdab67b34144edefdd8b817d3489676e7e40.zip cpython-44bbbdab67b34144edefdd8b817d3489676e7e40.tar.gz cpython-44bbbdab67b34144edefdd8b817d3489676e7e40.tar.bz2 |
- Issue #16292: Improve a comment for cross building in configure.ac
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 6 insertions, 6 deletions
@@ -3249,9 +3249,9 @@ if test -z "$MACHDEP" 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 index fc8a68c..9867529 100644 --- a/configure.ac +++ b/configure.ac @@ -352,9 +352,9 @@ if test -z "$MACHDEP" 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 |