From 3b62690e47d2c228e4eb042550785debf51d5ad5 Mon Sep 17 00:00:00 2001 From: jacob Date: Sat, 18 Dec 2004 11:34:41 +0000 Subject: [PATCH] Make sure the docs in a Unix release tarball are generated with the correct version info. git-svn-id: svn://svn.tartarus.org/sgt/putty@5011 cda61777-01e9-0310-a592-d414129be87e --- mkunxarc.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mkunxarc.sh b/mkunxarc.sh index 3fcbe107..8630fffc 100755 --- a/mkunxarc.sh +++ b/mkunxarc.sh @@ -11,20 +11,23 @@ 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 -s) +(cd doc && make -s ${docver:+"$docver"}) relver=`cat LATEST.VER` arcname="putty$arcsuffix" -- 2.11.0