I've run into a minor issue with the python docs. The files seem to be
extracted with permissions -rw-r----- (directories drwxr-x---)
I've tried:
tar --no-same-permissions --no-same-owner -xf python-2.7.3-docs-html.tar.bz2
My umask is 0022
We need to extract the files as -rw-r-r-- (and directories drwxr-xr-x)
The only thing I can come up with is:
find /usr/share/doc/Python-2.7.3 -type d -exec chmod 0755 {} \;
find /usr/share/doc/Python-2.7.3 -type f -exec chmod 0644 {} \;
Do others have this issue or is it just me?
-- Bruce
--
http://linuxfromscratch.org/mailman/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page