From df51089f68236271d4919761a65137c243957eea Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Wed, 25 May 2016 18:07:25 +0000 Subject: [PATCH] projects-dir.mk: Fix infinite cvs-update Last commit led to infinite recursion on cvs-update, fix that. Signed-off-by: Jan Lindemann --- make/projects-dir.mk | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/make/projects-dir.mk b/make/projects-dir.mk index 491412ca..eb50d83c 100644 --- a/make/projects-dir.mk +++ b/make/projects-dir.mk @@ -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 $@