diff options
Diffstat (limited to 'repo/python-docutils')
-rw-r--r-- | repo/python-docutils/python-docutils.xibuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/repo/python-docutils/python-docutils.xibuild b/repo/python-docutils/python-docutils.xibuild index 546c14d..cd1c45a 100644 --- a/repo/python-docutils/python-docutils.xibuild +++ b/repo/python-docutils/python-docutils.xibuild @@ -13,4 +13,9 @@ build() { package () { python setup.py install --root="$PKG_DEST" --optimize=1 + + for f in $PKG_DEST/usr/bin/*.py; do + echo $f -> $(basename $f ) + ln -s $(basename $f) ${f%.*} + done } |