python3: remove conflicting file with python 2.7.

This commit is contained in:
Juan RP 2013-09-27 03:50:37 +02:00
parent 2de7aa9199
commit 61f95ce442

View file

@ -1,7 +1,7 @@
# Template build file for 'python3'.
pkgname=python3
version=3.3.2
revision=3
revision=4
wrksrc="Python-${version}"
short_desc="Interpreted, interactive, object-oriented programming language (3.x series)"
maintainer="Juan RP <xtraeme@gmail.com>"
@ -45,6 +45,8 @@ do_install() {
make DESTDIR=${DESTDIR} install maninstall
install -Dm644 LICENSE ${DESTDIR}/usr/share/licenses/${pkgname}/LICENSE
rm -f ${DESTDIR}/usr/bin/2to3
ln -sf ../../libpython3.3m.so \
${DESTDIR}/usr/lib/python3.3/config-3.3m/libpython3.3m.so
}