diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2010-09-15 23:30:46 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2010-09-15 23:30:46 +0000 |
commit | 218a9a6dbe2693db2c9192a5a91a345443b3b3b9 (patch) | |
tree | 66ae02976f7fe25bd97ce9e07dccc58e03e69970 /main/python | |
parent | 732fcde0a316b0a006b95a84a89ddcb803159590 (diff) | |
download | aports-218a9a6dbe2693db2c9192a5a91a345443b3b3b9.tar.bz2 aports-218a9a6dbe2693db2c9192a5a91a345443b3b3b9.tar.xz |
main/python: xbmc and others need ucs4 unicode support
Diffstat (limited to 'main/python')
-rw-r--r-- | main/python/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/python/APKBUILD b/main/python/APKBUILD index c84d25b66..59aac9ca3 100644 --- a/main/python/APKBUILD +++ b/main/python/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=python pkgver=2.6.5 -pkgrel=3 +pkgrel=4 pkgdesc="A high-level scripting language" url="http://www.python.org" license="custom" @@ -25,7 +25,7 @@ build() { ./configure --prefix=/usr \ --enable-shared \ --with-threads \ - --enable-unicode \ + --enable-unicode=ucs4 \ --disable-gdbm make || return 1 |