I'm trying to get multiple people to update an installed Perl by using group permissions in UNIX and the usual Makefile created out of ExUtils::MakeMaker
On a plain install, Makemaker ignores the umask and the PERM_RW variable in the Makefile and creates the installed file with the permissions
24 -r--r--r-- 1 UID GROUP 23536 May 01 15:23 Ftp.pm
This is plainly wrong for my purpose. How do I get makemaker to install files with the following permissions:
24 -rw-rw-r-- 1 UID GROUP 23536 May 01 15:23 Ftp.pm
so that they're usable by members of GROUP?
cpanin a shell script that runschmod g+wafter the install. - chorobaumasklimits permissions, so whether MM ignores the umask or not is irrelevant since you're saying you want more permission, not less. - ikegami