projects-dir.mk: Fix infinite cvs-update

Last commit led to infinite recursion on cvs-update, fix that.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2016-05-25 18:07:25 +00:00
commit df51089f68

View file

@ -86,8 +86,9 @@ status:
cvs status $(addsuffix VERSION,$(CVS_PROJECTS)) cvs status $(addsuffix VERSION,$(CVS_PROJECTS))
$(PGIT) status $(PGIT) status
cvs-update: cvsdir.done cvs-update:
cvs update -dP $(CVS_PROJECTS) rm -f $@.done
make $@.done
git-push: git-push:
$(PGIT) push $(PGIT) push
@ -140,7 +141,7 @@ cvsdir.done:
fi fi
touch $@ touch $@
%.done: cvs-update.done: cvsdir.done
make $@ cvs update -dP $(CVS_PROJECTS)
touch $@ touch $@