diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-02-18 21:40:05 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-19 08:53:12 +0100 |
commit | 73293e88c828c9bddc0b684a4603f86f70f8e876 (patch) | |
tree | f888b9cd8e8d2687291a703a5a1d6a808c03e051 | |
parent | 0520b8cf59ab1ed8dac0146a48c05f4cf5b3fc9f (diff) | |
download | buildroot-73293e88c828c9bddc0b684a4603f86f70f8e876.tar.gz buildroot-73293e88c828c9bddc0b684a4603f86f70f8e876.zip |
python, python3: enable unicodedata for host-python, needed by setuptools
As we are going to bump setuptools to a much newer version, the host
python needs to be built with support for unicodedata.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/python/python.mk | 2 | ||||
-rw-r--r-- | package/python3/python3.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/python/python.mk b/package/python/python.mk index 0469820a68..3b0a4ddfd5 100644 --- a/package/python/python.mk +++ b/package/python/python.mk @@ -25,7 +25,7 @@ HOST_PYTHON_CONF_OPT += \ --disable-curses \ --disable-codecs-cjk \ --disable-nis \ - --disable-unicodedata \ + --enable-unicodedata \ --disable-dbm \ --disable-gdbm \ --disable-bsddb \ diff --git a/package/python3/python3.mk b/package/python3/python3.mk index 1bf85004d0..13f53f4f03 100644 --- a/package/python3/python3.mk +++ b/package/python3/python3.mk @@ -25,7 +25,7 @@ HOST_PYTHON3_CONF_OPT += \ --disable-curses \ --disable-codecs-cjk \ --disable-nis \ - --disable-unicodedata \ + --enable-unicodedata \ --disable-test-modules \ --disable-idle3 \ --disable-pyo-build |