mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Files
d2dbecb4ae9177e2e87adcb047147c6bcbf28cc1
13 lines
339 B
Plaintext
13 lines
339 B
Plaintext
#!/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
|