diff options
| author | notin | 2009-01-07 14:58:35 +0000 |
|---|---|---|
| committer | notin | 2009-01-07 14:58:35 +0000 |
| commit | 7534c1c085b2bd066f44d87c3caeb317e93d224c (patch) | |
| tree | 91e08a7b851e9efb02b93e3292c592e422f6eb00 /Makefile.build | |
| parent | d795621ceb458eca1f878ea0bbd482311a782807 (diff) | |
Suite de la révision #11756
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11757 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'Makefile.build')
| -rw-r--r-- | Makefile.build | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.build b/Makefile.build index 1afa656a9e..908213d425 100644 --- a/Makefile.build +++ b/Makefile.build @@ -784,7 +784,7 @@ $(foreach f,$(RECTYPESML),$(eval $(call rectypes-rules-template,$(f)))) # source tree .PHONY: revision -revision $(REVISIONML): +revision config/revision.ml: $(SHOW)'CHECK revision' $(HIDE)rm -f revision.new ifeq ($(CHECKEDOUT),svn) @@ -817,19 +817,19 @@ endif $(HIDE)set -e; \ if test -e revision.new; then \ if test -e revision; then \ - if test "`cat $(REVISIONML)`" = "`cat revision.new`" ; then \ + if test "`cat config/revision.ml`" = "`cat revision.new`" ; then \ rm -f revision.new; \ else \ - mv -f revision.new $(REVISIONML); \ + mv -f revision.new config/revision.ml; \ fi; \ else \ - mv -f revision.new $(REVISIONML); \ + mv -f revision.new config/revision.ml; \ fi; \ else \ - echo 'let version = Coq_config.version' > $(REVISIONML); \ - echo 'let revision = Coq_config.date' >> $(REVISIONML); \ + echo 'let version = Coq_config.version' > config/revision.ml; \ + echo 'let revision = Coq_config.date' >> config/revision.ml; \ fi; \ - echo 'let date = "$(shell date +"%h %d %Y %H:%M:%S")"' >> $(REVISIONML) + echo 'let date = "$(shell date +"%h %d %Y %H:%M:%S")"' >> config/revision.ml ########################################################################### # Default rules |
