Permission Problem during: make install
Status: Alpha
Brought to you by:
flip
ERROR INDICATOR:
Permissions of /home/cvsowner/cvsd-root/example (and subdirectories) does not
match CVSUMASK.
NATURE OF PROBLEM:
CVSUMASK not being passed to cvs command. Environment variable must be exported.
FIX:
1. Modify Makefile:
change from:
install-example:
su -s /bin/bash -l cvsowner -c "CVSUMASK=027 && cvs -d $(ROOTDIR)/example init"
change to:
install-example:
su -s /bin/bash -l cvsowner -c "CVSUMASK=027 && export CVSUMASK && cvs -d $(ROOTDIR)/example init"
Shouldn't that be $(CVSOWNER_NAME) instead os just cvsowner?