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))
$(PGIT) status
cvs-update: cvsdir.done
cvs update -dP $(CVS_PROJECTS)
cvs-update:
rm -f $@.done
make $@.done
git-push:
$(PGIT) push
@ -140,7 +141,7 @@ cvsdir.done:
fi
touch $@
%.done:
make $@
cvs-update.done: cvsdir.done
cvs update -dP $(CVS_PROJECTS)
touch $@