Merge pull request #435 from Cubox-/patch-1

Fix issue on FreeBSD.
This commit is contained in:
Valentin Lorentz 2012-12-21 15:54:03 -08:00
commit 2363c404b4
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
rm -f src/version.py # Prevent 2to3 from copying it, since py3k/src/version.py was probably written by root.
rm -rf py3k
mkdir py3k
cp locale/ py3k/ -R
cp plugins/ py3k/ -R # copy plugins data
cp -R locale/ py3k/
cp -R plugins/ py3k/ # copy plugins data
python 2to3/run.py src/ plugins/ test/ scripts/* setup.py -wWno py3k -f all -f def_iteritems -f def_itervalues -f def_iterkeys -f reload "$@"