mirror of
https://github.com/python/cpython.git
synced 2025-11-04 23:51:47 +00:00
13 lines
339 B
Text
13 lines
339 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# FIXME
|
||
|
|
PYVER="@PYVER@"
|
||
|
|
|
||
|
|
if [ -d /Developer/Documentation ]; then
|
||
|
|
if [ ! -d /Developer/Documentation/Python ]; then
|
||
|
|
mkdir -p /Developer/Documentation/Python
|
||
|
|
fi
|
||
|
|
|
||
|
|
ln -fhs /Library/Frameworks/Python.framework/Versions/${PYVER}/Resources/English.lproj/Documentation "/Developer/Documentation/Python/Reference Documentation"
|
||
|
|
fi
|