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 /package/python | |
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>
Diffstat (limited to 'package/python')
-rw-r--r-- | package/python/python.mk | 2 |
1 files changed, 1 insertions, 1 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 \ |