changeset 3100:ed4c9b04f74e

makefile: Remove hg update commands We don't want makefiles to play with mercurial commands. Particularly not when we are about to push a snapshot.
author Tormod Volden <debian.tormod@gmail.com>
date Sun, 28 Feb 2016 21:37:42 +0100
parents 61225db57f19
children 3f3350d0f629
files makefile
diffstat 1 files changed, 1 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/makefile	Sun Feb 28 21:37:24 2016 +0100
+++ b/makefile	Sun Feb 28 21:37:42 2016 +0100
@@ -4,7 +4,6 @@
 endif
 
 export NITROS9DIR
-
 include rules.mak
 
 dirs	=  $(NOSLIB) $(LEVEL1) $(LEVEL2) $(LEVEL3) $(3RDPARTY)
@@ -36,11 +35,6 @@
 	$(RM) $(DSKDIR)/ReadMe
 	$(RM) $(DSKDIR)/index.html
 
-# Do CVS update
-hgupdate:
-	hg pull
-	hg update
-
 # Make DSK images
 dsk:	all
 	$(foreach dir,$(dirs),$(MAKE) -C $(dir) dsk &&) :
@@ -51,7 +45,6 @@
 	$(foreach dir,$(dirs),$(MAKE) -C $(dir) dskcopy &&) :
 	$(MKDSKINDEX) $(DSKDIR) > $(DSKDIR)/index.html
 
-
 # Clean DSK images
 dskclean:
 	$(foreach dir,$(dirs),$(MAKE) -C $(dir) dskclean &&) :
@@ -65,7 +58,7 @@
 # The "burst" script is found in the scripts folder and must
 # on your ssh account at sourceforge.net
 ifdef	SOURCEUSER
-nightly: clean hgupdate dskcopy
+nightly: clean dskcopy
 	$(MAKE) info > $(DSKDIR)/ReadMe
 	$(ARCHIVE) nitros9project $(DSKDIR)/*
 	scp nitros9project.zip $(SOURCEUSER),nitros9@web.sourceforge.net:/home/project-web/nitros9/htdocs/nitros9project-$(shell date +%Y%m%d).zip 
@@ -79,4 +72,3 @@
 	@$(ECHO) "You may wish to refer to the nightly"
 	@$(ECHO) "section of the makefile."
 endif
-