From 8d936f5f877573679b8e64b4a858cedc76226faf Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 6 Oct 2012 14:10:55 -0400 Subject: [PATCH] Makefile: do not depend copy_version_source on $(VERSION_FILE). Even though this dependency does exist, it was causing doulbe `gitcrement next` calls in `make dist`. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 623aff9..e7ea2f0 100644 --- a/Makefile +++ b/Makefile @@ -65,8 +65,8 @@ $(VERSION_FILE): echo "$(VERSION_NAMESPACE).STAMP = $(shell date +%s);" >> $(VERSION_FILE) # Copies the version template to the source. -copy_version_src: $(VERSION_FILE) - cp $< $(VERSION_SOURCE) +copy_version_src: + cp $(VERSION_FILE) $(VERSION_SOURCE) # Commits the version source and the frontend bin. stamp: -- 2.22.5