Fix date of release 0.4 (actually a subtle re-release) in Changes
authormike <mike>
Thu, 21 Nov 2002 10:11:08 +0000 (10:11 +0000)
committermike <mike>
Thu, 21 Nov 2002 10:11:08 +0000 (10:11 +0000)
Tweak the way "mkdist" generates documentations.

Changes
mkdist

diff --git a/Changes b/Changes
index 6794da2..a0f17c0 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,9 +1,9 @@
-$Id: Changes,v 1.19 2002-11-20 23:11:15 mike Exp $
+$Id: Changes,v 1.20 2002-11-21 10:11:08 mike Exp $
 
 Revision history for the "cql-java" package.
 See the bottom of this file for a list of things still to do.
 
-0.4  Thu Nov 21 00:10:21 2002
+0.4  Thu Nov 21 10:09:26 2002
        - Add support for the new "phonetic" relation modifier,
          including its mapping in "etc/pqf.properties".
        - Make prefix-maps bind loosely, so that ``>dc=x a and b''
diff --git a/mkdist b/mkdist
index fc5996d..527134c 100755 (executable)
--- a/mkdist
+++ b/mkdist
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 # mkdist - make a distribution of the cql-java software
-# $Id: mkdist,v 1.1 2002-11-03 17:37:14 mike Exp $
+# $Id: mkdist,v 1.2 2002-11-21 10:11:08 mike Exp $
 
 version=`cat VERSION`
 distdir=cql-java-$version
@@ -14,7 +14,8 @@ cd $tmpdir
 find . \( -name CVS -o -name .cvsignore \) -print | xargs rm -rf
 rm mkdist
 ( cd src/org/z3950/zing/cql && make && make clean )
-( cd src/org/z3950/zing/cql && make docs )
+( cd docs && make )
+( cd test/regression && make distclean )
 cd ..
 tar cf - $distdir | gzip -9v > $distfile
 rm -rf $tmpdir