mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-04-06 22:09:16 +02:00
manylinux-common: Fix pip install change ownership of "man" and "share" dir
This commit will fix installation of packages like nose that would otherwise fail to install with error like the following: Installing collected packages: nose Exception: Traceback (most recent call last): [...] Permission denied: '/opt/_internal/cpython-2.7.11-ucs2/man'
This commit is contained in:
parent
0eaea01158
commit
66a33a7647
@ -6,3 +6,10 @@ done
|
|||||||
for DIR in /opt/python/*/bin; do
|
for DIR in /opt/python/*/bin; do
|
||||||
chown -R $BUILDER_UID:$BUILDER_GID $DIR
|
chown -R $BUILDER_UID:$BUILDER_GID $DIR
|
||||||
done
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user