summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2012-03-15 20:30:11 (GMT)
committerMatthias Klose <doko@ubuntu.com>2012-03-15 20:30:11 (GMT)
commitca2f6ecfc99ec7f0467e3c6c980fffd5ab64d9f0 (patch)
treefc93b15a53eddbf5912a09d8b20f5cb0ca847c26 /configure.ac
parent3270d11d8aee447e6cbd5388d677b4a23879e80e (diff)
downloadcpython-ca2f6ecfc99ec7f0467e3c6c980fffd5ab64d9f0.zip
cpython-ca2f6ecfc99ec7f0467e3c6c980fffd5ab64d9f0.tar.gz
cpython-ca2f6ecfc99ec7f0467e3c6c980fffd5ab64d9f0.tar.bz2
- Issue #14327: Call AC_CANONICAL_HOST in configure.ac and check in
config.{guess,sub}.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 6db4f3e..dd09dc5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,6 +33,8 @@ fi
AC_CONFIG_SRCDIR([Include/object.h])
AC_CONFIG_HEADER(pyconfig.h)
+AC_CANONICAL_HOST
+
dnl Ensure that if prefix is specified, it does not end in a slash. If
dnl it does, we get path names containing '//' which is both ugly and
dnl can cause trouble.