summaryrefslogtreecommitdiff
path: root/package/python3/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2013-10-29 08:11:38 +0100
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2013-10-29 08:11:38 +0100
commit6c4a3cbc980b8c99b6064073bcb54bdbe73bcd0a (patch)
tree008825b92e87ee94a18540f0b029e13df809a9a4 /package/python3/Makefile
parent303f5c0994a6ff6c7d3bee7c29f94928ae5674de (diff)
avoid byte compiling on install, so bytecode must not be removed afterwards
Diffstat (limited to 'package/python3/Makefile')
-rw-r--r--package/python3/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/package/python3/Makefile b/package/python3/Makefile
index 3ce608171..122e14bff 100644
--- a/package/python3/Makefile
+++ b/package/python3/Makefile
@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= python3
PKG_VERSION:= 3.3.2
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= 0a2ea57f6184baf45b150aee53c0c8da
PKG_DESCR:= Python scripting language (Version 3)
PKG_SECTION:= lang
@@ -116,7 +116,6 @@ python3-install: ${INSTALL_MODS_y} ${INSTALL_MODS_m}
${CP} ${WRKINST}/usr/lib/python3.3/* ${IDIR_PYTHON3}/usr/lib/python3.3
${CP} ${WRKINST}/usr/include/python3.3m/pyconfig.h \
${IDIR_PYTHON3}/usr/include/python3.3m
- find ${IDIR_PYTHON3} -name "\*.pyc" -o -name "*\.pyo" -exec rm {} \;
for i in zlib _bz2 _ncurses _ssl _gdbm _sqlite pyexpat readline; do \
rm ${IDIR_PYTHON3}/usr/lib/python3.3/lib-dynload/$${i}*so; \
done