2006-06-07 15:58:42 -03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
PYVER="@PYVER@"
|
|
|
|
|
|
|
|
if [ -d /Developer/Documentation ]; then
|
|
|
|
if [ ! -d /Developer/Documentation/Python ]; then
|
|
|
|
mkdir -p /Developer/Documentation/Python
|
|
|
|
fi
|
|
|
|
|
2006-10-08 14:37:58 -03:00
|
|
|
ln -fhs /Library/Frameworks/Python.framework/Versions/${PYVER}/Resources/English.lproj/Documentation "/Developer/Documentation/Python/Reference Documentation @PYVER@"
|
2006-06-07 15:58:42 -03:00
|
|
|
fi
|