home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit c302d0a3430a20251a115cf50c8be56a6043b77f
parent d641b93e7bfa6b68bb9684ab866c75230f49532e
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri,  5 Jun 2020 15:03:39 +0200

Makefile: remove ~/.config/nixpkgs link in setup

This is not required anymore.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
MMakefile | 7+------
1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/Makefile b/Makefile @@ -8,7 +8,6 @@ endif DOTEMACS = ~/.config/emacs DOTGNUS = ~/.config/gnus -DOTNIXPKGS = ~/.config/nixpkgs ETCNIXOS = /etc/nixos SYNCDIR = /home/vincent/sync/nixos SRCWWW = ~/src/www @@ -115,7 +114,7 @@ doctor: @readlink $(DOTNIXPKGS) || $(error $(DOTNIXPKGS) is not correctly linked, you may need to run setup) .PHONY: setup -setup: $(DOTEMACS) $(DOTGNUS) $(DOTNIXPKGS) $(SYNCDIR) $(SRCHOME) +setup: $(DOTEMACS) $(DOTGNUS) $(SYNCDIR) $(SRCHOME) $(DOTEMACS): @echo "Link $(DOTEMACS) to $(CURDIR)/tools/emacs" @@ -125,10 +124,6 @@ $(DOTGNUS): @echo "Link $(DOTGNUs) to $(CURDIR)/tools/gnus" @ln -s $(CURDIR)/tools/gnus $(DOTGNUS) -$(DOTNIXPKGS): - @echo "Link $(DOTNIXPKGS) to $(CURDIR)" - @ln -s $(CURDIR) $(DOTNIXPKGS) - $(SRCHOME): @echo "Make sure $(SRCHOME) exists" @ln -s ${PWD} $(SRCHOME)