--- misc/scripts/shell/build.sh 2004/03/20 20:08:04 1.10 +++ misc/scripts/shell/build.sh 2004/03/20 22:56:38 1.11 @@ -4,7 +4,7 @@ # builds new-style dists from cvs source, and puts them # in a single location for download (eg. snapshots) # -# $Id: build.sh,v 1.10 2004/03/20 20:08:04 tdb Exp $ +# $Id: build.sh,v 1.11 2004/03/20 22:56:38 tdb Exp $ # base directory for staging STAGING=/u1/i-scream/staging @@ -31,6 +31,8 @@ iscreambuild() { if [ "X$TAG" != "X" ]; then cvs -d $CVSROOT update -dPr $TAG cvs2cl --stdout --no-wrap -r -t -w -S -g "-d $CVSROOT" -g "-q" -l "-r::$TAG" > build/ChangeLog + else + cvs2cl --stdout --no-wrap -r -t -w -S -g "-d $CVSROOT" -g "-q" > build/ChangeLog fi LIBRARIES=eval `grep "LIBRARIES=" configure` for LIB in $LIBRARIES; do @@ -55,6 +57,8 @@ gnubuild() { if [ "X$TAG" != "X" ]; then cvs -d $CVSROOT update -dPr $TAG cvs2cl --stdout --no-wrap -r -t -w -S -g "-d $CVSROOT" -g "-q" -l "-r::$TAG" > ChangeLog + else + cvs2cl --stdout --no-wrap -r -t -w -S -g "-d $CVSROOT" -g "-q" > ChangeLog fi aclocal autoheader @@ -79,6 +83,8 @@ pydistbuild() { if [ "X$TAG" != "X" ]; then cvs -d $CVSROOT update -dPr $TAG cvs2cl --stdout --no-wrap -r -t -w -S -g "-d $CVSROOT" -g "-q" -l "-r::$TAG" > ChangeLog + else + cvs2cl --stdout --no-wrap -r -t -w -S -g "-d $CVSROOT" -g "-q" > ChangeLog fi python setup.py sdist TARBALL=`ls dist/*.tar.gz` @@ -159,7 +165,7 @@ for PROG in $PROGS; do gnubuild $CMSSOURCE/idar $BUILDS/idar no --with-curses-prefix=/usr/local/packages/ncurses ;; pystatgrab) - pydistbuild $CMSSOURCE/pystatgrab $BUILDS/libstatgrab + pydistbuild $CMSSOURCE/pystatgrab $BUILDS/pystatgrab ;; esac done