mirror of
https://github.com/transmission/transmission
synced 2024-12-23 08:13:27 +00:00
version.sh can't call svn from the command-line...
This commit is contained in:
parent
a9fc478955
commit
f734d90668
1 changed files with 8 additions and 1 deletions
|
@ -12,7 +12,14 @@ STRING=0.72+
|
||||||
|
|
||||||
PEERID_PREFIX="-TR072Z-"
|
PEERID_PREFIX="-TR072Z-"
|
||||||
USERAGENT_PREFIX="0.72+"
|
USERAGENT_PREFIX="0.72+"
|
||||||
SVN_REVISION=`svn info . | sed -ne "s/^Revision: \(.*\:\)\{0,1\}\(.*\)$/\2/p"`
|
SVN_REVISION=`( find . '(' -name '*.[chm]' -o -name '*.cpp' -o -name '*.po' \
|
||||||
|
-o -name '*.mk' -o -name '*.in' -o -name 'Makefile' \
|
||||||
|
-o -name 'configure' ')' -exec cat '{}' ';' ) | \
|
||||||
|
sed -e '/\$Id:/!d' -e \
|
||||||
|
's/.*\$Id: [^ ]* \([0-9]*\) .*/\1/' |
|
||||||
|
awk 'BEGIN { REV=0 }
|
||||||
|
{ if ( $1 > REV ) REV=$1 }
|
||||||
|
END { print REV }'`
|
||||||
|
|
||||||
# Generate files to be included: only overwrite them if changed so make
|
# Generate files to be included: only overwrite them if changed so make
|
||||||
# won't rebuild everything unless necessary
|
# won't rebuild everything unless necessary
|
||||||
|
|
Loading…
Reference in a new issue