Browse Source

Pavel Chromy fix: the guess-rev.sh scripts to retrieve SVN revision returns the result including new line

causing PKGBLDREV macro to not work

git-svn-id: svn://svn.berlios.de/openocd/trunk@398 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.1.0
oharboe 16 years ago
parent
commit
54196f7673
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      guess-rev.sh

+ 1
- 1
guess-rev.sh View File

@@ -2,7 +2,7 @@

REV=unknown

which svnversion > /dev/null 2>&1 && REV=`svnversion`
which svnversion > /dev/null 2>&1 && REV=`svnversion -n`

echo -n $REV


Loading…
Cancel
Save