Python: fix modules install

This commit is contained in:
Stefan Saraev 2013-08-30 21:21:18 +03:00
parent b67698a1a3
commit bc0e948c3c

View File

@ -89,9 +89,8 @@ INCLUDE_DIRS="$INCLUDE_DIRS xml/parsers xml/sax wsgiref"
mkdir -p ./Lib
cp ../Lib/*.py ./Lib
for dirs in $INCLUDE_DIRS; do
mkdir -p ./Lib/$dirs
cp ../Lib/$dirs/*.py ./Lib/$dirs
for dir in $INCLUDE_DIRS; do
cp -a ../Lib/$dir ./Lib/
done
python -Wi -t -B ../Lib/compileall.py ./Lib -f