home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Big Green CD 8
/
BGCD_8_Dev.iso
/
NEXTSTEP
/
Languages
/
python
/
python-1.4-MIHS-no_headers
/
Python-bin.pkg
/
real_post_install
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-11-13
|
326 b
|
11 lines
#!/bin/sh
PACKAGE=$1
INSTALLDIR=$2
echo
librarydir=$INSTALLDIR/lib/python1.4
# The package does not include the compiled scripts, so compile them now.
echo " Compiling the Python Library Scripts in $librarydir ... "
$INSTALLDIR/bin/python -c "import compileall; compileall.compile_dir ('$librarydir', 3)"
echo "OK."
exit 0