[svn-r27624] Update bin/bbrelease to handle changed output of 'svn info' with svn version 1.8.

Change to experimental release script bbrelease for buildbot to eliminate extra line in version output.
This commit is contained in:
Larry Knox 2015-08-31 12:50:08 -05:00
parent b920ee876e
commit de1bafd1d8

View File

@ -260,7 +260,7 @@ if [ X$revmode = Xyes ]; then
# Copy old version of config/lt_vers.am, since it's hard to
# "undo" changes to it.
cp config/lt_vers.am $tmpdir
branch=`svn info | grep URL: | awk -F/ '{print $NF}'`
branch=`svn info | grep ^URL: | awk -F/ '{print $NF}'`
revision=`svn info | grep "Last Changed Rev:" | awk '{print $4}'`
# Set version information to m.n.r-r$revision.
# (h5vers does not correctly handle just m.n.r-$today.)