diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2015-08-31 17:50:08 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2015-08-31 17:50:08 (GMT) |
commit | de1bafd1d81f936c046317720d7a73bcdb41f5e6 (patch) | |
tree | 9e6f20d9faecf8fffebb5d31ea362716e0c3c1b1 /bin/bbrelease | |
parent | b920ee876e4854f7e770f21c04126a208fb3b1af (diff) | |
download | hdf5-de1bafd1d81f936c046317720d7a73bcdb41f5e6.zip hdf5-de1bafd1d81f936c046317720d7a73bcdb41f5e6.tar.gz hdf5-de1bafd1d81f936c046317720d7a73bcdb41f5e6.tar.bz2 |
[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.
Diffstat (limited to 'bin/bbrelease')
-rwxr-xr-x | bin/bbrelease | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bbrelease b/bin/bbrelease index fea498a..1e3b88d 100755 --- a/bin/bbrelease +++ b/bin/bbrelease @@ -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.) |