From 54196f7673f1324abfb3c7510f7515c32db95032 Mon Sep 17 00:00:00 2001 From: oharboe Date: Fri, 29 Feb 2008 13:03:37 +0000 Subject: [PATCH] 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 --- guess-rev.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guess-rev.sh b/guess-rev.sh index 15cfff4008..bd9a4a753d 100755 --- a/guess-rev.sh +++ b/guess-rev.sh @@ -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 -- 2.30.2