From: Thomas Petazzoni Date: Tue, 18 Feb 2014 20:40:05 +0000 (+0100) Subject: python, python3: enable unicodedata for host-python, needed by setuptools X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=73293e88c828c9bddc0b684a4603f86f70f8e876;p=buildroot.git 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 Signed-off-by: Peter Korsgaard --- 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