diff options
| author | David Aspinall | 2003-09-25 00:21:37 +0000 |
|---|---|---|
| committer | David Aspinall | 2003-09-25 00:21:37 +0000 |
| commit | bde89baa2c41d254d7f06d3efde8674fe0ac0848 (patch) | |
| tree | bfc495b1c3c3691d8ee9427e646d3f574f2de31f | |
| parent | ed616149d2b0125e402c7a8aa946f8c8c871eb26 (diff) | |
Problem with export, temp fix
| -rw-r--r-- | Makefile.devel | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/Makefile.devel b/Makefile.devel index 79d6d625..efdb1a61 100644 --- a/Makefile.devel +++ b/Makefile.devel @@ -376,12 +376,18 @@ dist: @echo "*************************************************" @echo " Running cvs export .." @echo "*************************************************" - if [ -z "$(NOCVS)" ]; then \ - (cd $(DISTBUILDIR); cvs export -kv -r "$(CVS_RELEASENAME)" -d $(RELEASENAME) $(CVSNAME)); \ - else \ - mkdir -p $(DISTBUILDIR)/$(RELEASENAME); \ - cp -pr . $(DISTBUILDIR)/$(RELEASENAME); \ - fi +## FIXME: wierdness here this line below appears inside the if statement: +## results in an error "no such tag" from cvs. Yet run on its +## own below, it's fine. Something with quoting?? Also, +## the behaviour is different with the cvs.inf pserver than before, argh!! + cvs export -kv -r ${CVS_RELEASENAME} -d ${RELEASENAME} ${CVSNAME} +# if [ -z "$(NOCVS)" ]; then \ +# (cd $(DISTBUILDIR); \ +# cvs export -kv -r ${CVS_RELEASENAME} -d ${RELEASENAME} ${CVSNAME}) +# else \ +# mkdir -p $(DISTBUILDIR)/$(RELEASENAME); \ +# cp -pr . $(DISTBUILDIR)/$(RELEASENAME); \ +# fi @echo "*************************************************" @echo " Running 'make alldist' for new release .." @echo "*************************************************" |
