diff options
author | Christian Heimes <christian@cheimes.de> | 2012-12-12 12:10:32 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2012-12-12 12:10:32 (GMT) |
commit | b92c40ef9b7ce7b12d88bbb6531fa6870444f704 (patch) | |
tree | a2fada69225776433cc17d7fde43bf7489d1c4b8 /configure.ac | |
parent | e6f228011eb6dda360685d62b15a4263ae3f1960 (diff) | |
parent | 954ac03a44efd352ca06a85caf2e2c04e49b3ede (diff) | |
download | cpython-b92c40ef9b7ce7b12d88bbb6531fa6870444f704.zip cpython-b92c40ef9b7ce7b12d88bbb6531fa6870444f704.tar.gz cpython-b92c40ef9b7ce7b12d88bbb6531fa6870444f704.tar.bz2 |
Cross compiling needs host and build settings. configure no longer
creates a broken PYTHON_FOR_BUILD variable when --build is missing.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index bc49deb..ddbbcdf 100644 --- a/configure.ac +++ b/configure.ac @@ -67,6 +67,8 @@ if test "$cross_compiling" = yes; then AC_MSG_RESULT($interp) PYTHON_FOR_BUILD="_PYTHON_PROJECT_BASE=$srcdir"' _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(srcdir)/Lib:$(srcdir)/Lib/plat-$(MACHDEP) '$interp fi +elif test "$cross_compiling" = maybe; then + AC_MSG_ERROR([Cross compiling required --host=HOST-TUPLE and --build=ARCH]) else PYTHON_FOR_BUILD='./$(BUILDPYTHON) -E' fi |