1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Fix version reporting in Unix builds versioned by a specific svn

revision ('Custom build r1234'). Those builds were passing
'-DSVN_REV=r1234' to version.c, instead of -DSVN_REV=1234 as they
should have, leading to silly run-time version messages such as
'plink: Custom build rr9226'.

To chop the r off the front of the revision string passed in, I've
used a bashism in mkunxarc.sh. I think this is an acceptable extra
dependency.

[originally from svn r9229]
This commit is contained in:
Simon Tatham 2011-07-17 22:17:53 +00:00
parent 5cb0fb2927
commit bd60f2fc5b

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
# Build a Unix source distribution from the PuTTY CVS area. # Build a Unix source distribution from the PuTTY CVS area.
# #
@ -16,7 +16,7 @@ case "$1" in
;; ;;
r*) r*)
arcsuffix="-$1" arcsuffix="-$1"
ver="-DSVN_REV=$1" ver="-DSVN_REV=${1#r}"
docver= docver=
;; ;;
'') '')