diff options
-rw-r--r-- | .file-metadata | bin | 3956 -> 3956 bytes | |||
-rwxr-xr-x | for-group | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/.file-metadata b/.file-metadata Binary files differindex e1db277..9d0d613 100644 --- a/.file-metadata +++ b/.file-metadata @@ -92,3 +92,19 @@ fi # typo (not using this script properly after configuration). export reproducible_paper_group_name="$1" sg "$1" "umask u+r,u+w,g+r,g+w,o-r,o-w,o-x && $script" + + + + + +# Group writing permissions for dependencies directory +# +# The common build process sets the writing permissions of the installed +# programs/libraries to `755'. So group members can't write over a +# file. This creates problems when another group member wants to update the +# software for example. We thus need to manually add the group writing flag +# to all installed software files. +if [ "x$2" = xconfigure ]; then + echo "Enabling group writing permission on all installed software..." + chmod -R g+w .local/; +fi |