Move generation of the "configure" script into its own script so that
[u/mdw/putty] / mkunxarc.sh
index 3485612..57ada30 100755 (executable)
@@ -11,30 +11,38 @@ case "$1" in
     case "$1" in *[!-0-9]*) echo "Malformed snapshot ID '$1'" >&2;exit 1;;esac
     arcsuffix="-`cat LATEST.VER`-$1"
     ver="-DSNAPSHOT=$1"
+    docver=
     ;;
   '')
     arcsuffix=
     ver=
+    docver=
     ;;
   *)
     case "$1" in *[!.0-9a-z]*) echo "Malformed release ID '$1'">&2;exit 1;;esac
     arcsuffix="-$1"
     ver="-DRELEASE=$1"
+    docver="VERSION=\"PuTTY release $1\""
     ;;
 esac
 
 perl mkfiles.pl
-(cd doc && make)
+(cd doc && make -s ${docver:+"$docver"})
+sh mkauto.sh
 
 relver=`cat LATEST.VER`
 arcname="putty$arcsuffix"
 mkdir uxarc
 mkdir uxarc/$arcname
-find . -name uxarc -prune -o -name . -o \
+find . -name uxarc -prune -o \
+       -name CVS -prune -o \
+       -name .svn -prune -o \
+       -name . -o \
        -type d -exec mkdir uxarc/$arcname/{} \;
 find . -name uxarc -prune -o \
        -name CVS -prune -o \
        -name .cvsignore -prune -o \
+       -name .svn -prune -o \
        -name '*.zip' -prune -o \
        -name '*.tar.gz' -prune -o \
        -type f -exec ln -s $PWD/{} uxarc/$arcname/{} \;
@@ -43,5 +51,5 @@ if test "x$ver" != "x"; then
    md5sum `find . -name '*.[ch]' -print` > manifest;
    echo "$ver" > version.def)
 fi
-tar -C uxarc -chzf - $arcname > $arcname.tar.gz
+tar -C uxarc -chzof $arcname.tar.gz $arcname
 rm -rf uxarc