summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/util.py
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2012-06-30 18:42:45 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2012-06-30 18:42:45 (GMT)
commit1abe1c5fe13ca64c54e16db25de7c4dd5578a7c1 (patch)
tree8ea445f4288eaa7db6407625b0c74a22625d3b37 /Lib/distutils/util.py
parentb457b9be4deac2460cb8ac741af6a723d6cb4f88 (diff)
downloadcpython-1abe1c5fe13ca64c54e16db25de7c4dd5578a7c1.zip
cpython-1abe1c5fe13ca64c54e16db25de7c4dd5578a7c1.tar.gz
cpython-1abe1c5fe13ca64c54e16db25de7c4dd5578a7c1.tar.bz2
- Issue #14330: For cross builds, don't use host python, use host search paths
for host compiler.
Diffstat (limited to 'Lib/distutils/util.py')
-rw-r--r--Lib/distutils/util.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py
index bce8402..9833bf9 100644
--- a/Lib/distutils/util.py
+++ b/Lib/distutils/util.py
@@ -53,6 +53,10 @@ def get_platform ():
return 'win-ia64'
return sys.platform
+ # Set for cross builds explicitly
+ if "_PYTHON_HOST_PLATFORM" in os.environ:
+ return os.environ["_PYTHON_HOST_PLATFORM"]
+
if os.name != "posix" or not hasattr(os, 'uname'):
# XXX what about the architecture? NT is Intel or Alpha,
# Mac OS is M68k or PPC, etc.