diff options
Diffstat (limited to 'cvs')
-rw-r--r-- | cvs/Makefile | 12 | ||||
-rw-r--r-- | cvs/user-profile | 4 |
2 files changed, 16 insertions, 0 deletions
diff --git a/cvs/Makefile b/cvs/Makefile new file mode 100644 index 0000000..c834e59 --- /dev/null +++ b/cvs/Makefile @@ -0,0 +1,12 @@ +.POSIX: + +install: + mkdir -p -- ~/.config/profile.d + test ! -d ~/.config/profile.d/cvs + ln -sf -- ~/.dotfiles/cvs/user-profile ~/.config/profile.d/cvs + +uninstall: + -unlink -- ~/.config/profile.d/cvs + -rmdir -- ~/.config/profile.d + +.PHONY: install uninstall diff --git a/cvs/user-profile b/cvs/user-profile new file mode 100644 index 0000000..0788bd0 --- /dev/null +++ b/cvs/user-profile @@ -0,0 +1,4 @@ +# -*- shell-script -*- + +export CVSROOT=~/.var/lib/cvsroot +export CVS_RSH=ssh |