aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 "*************************************************"