aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall2003-09-25 00:21:37 +0000
committerDavid Aspinall2003-09-25 00:21:37 +0000
commitbde89baa2c41d254d7f06d3efde8674fe0ac0848 (patch)
treebfc495b1c3c3691d8ee9427e646d3f574f2de31f
parented616149d2b0125e402c7a8aa946f8c8c871eb26 (diff)
Problem with export, temp fix
-rw-r--r--Makefile.devel18
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 "*************************************************"