Merge pull request #100 from dockcross/manylinux-change-ownership-of-man-and-share-dirs

manylinux-common: Fix pip install change ownership of "man" and "share" dir
This commit is contained in:
Jean-Christophe Fillion-Robin 2017-01-18 17:50:14 -05:00 committed by GitHub
commit 53c068c8a4

View File

@ -6,3 +6,10 @@ done
for DIR in /opt/python/*/bin; do
chown -R $BUILDER_UID:$BUILDER_GID $DIR
done
for DIR in /opt/python/*; do
mkdir $DIR/man
chown -R $BUILDER_UID:$BUILDER_GID $DIR/man
done
for DIR in /opt/python/*/share; do
chown -R $BUILDER_UID:$BUILDER_GID $DIR
done