aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.devel
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>1999-10-06 17:42:24 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>1999-10-06 17:42:24 +0000
commit4ce66ed0ed892737b3c66b511c865a4bc44beadb (patch)
tree011b7f20496550b233b8e57cccf7b51a89aeb209 /Makefile.devel
parentb23dd120a1d7822e79e86eb89d4f8764d587b82b (diff)
In case Makefile.devel changes, update in make process is not good enough.
Diffstat (limited to 'Makefile.devel')
-rw-r--r--Makefile.devel5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.devel b/Makefile.devel
index 7b81b5ad..288dfebe 100644
--- a/Makefile.devel
+++ b/Makefile.devel
@@ -241,11 +241,10 @@ images: FORCE
##
tag:
@echo "*************************************************"
- @echo " Tagging sources... (fails if CVS source dirty)"
+ @echo " Tagging sources... (rerun if CVS source dirty)"
@echo "*************************************************"
# Update the sources, this is almost always what we want to do.
- cvs update -d
- if [ -z "$(NOCVS)" ] && [ -n "`cvs -n -q update`" ]; then exit 1; fi
+ if [ -z "$(NOCVS)" ] && [ -n "`cvs -n -q update`" ]; then cvs update -d; exit 1; fi
# Tag proof-site.el and ProofGeneral.spec
(cd generic; mv $(VERSIONFILE) $(VERSIONFILE).old; sed -e 's/defconst $(VERSIONVARIABLE) \".*\"/defconst $(VERSIONVARIABLE) \"Proof General, Version $(VERSION) released by da. Email proofgen@dcs.ed.ac.uk.\"/g' $(VERSIONFILE).old > $(VERSIONFILE); rm $(VERSIONFILE).old)
(cd etc; mv ProofGeneral.spec ProofGeneral.spec.old; sed -e 's/Version:.*$$/Version: $(VERSION)/g' ProofGeneral.spec.old > ProofGeneral.spec; rm ProofGeneral.spec.old)