home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Big Green CD 8
/
BGCD_8_Dev.iso
/
OPENSTEP
/
Languages
/
Python
/
python-14-src
/
Contrib
/
NeXT
/
Python-bin.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
|
1997-01-17
|
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