This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] fix gdb version parsing in src-release.sh


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=b677098d4e086c093554a064076e021fec0399e8

commit b677098d4e086c093554a064076e021fec0399e8
Author: Joel Brobecker <brobecker@adacore.com>
Date:   Sun Jan 17 10:01:55 2016 +0400

    fix gdb version parsing in src-release.sh
    
    Small change required after we switched the gdb version scheme to
    using a -git suffix rather than a -cvs one.
    
    ChangeLog:
    
            * src-release.sh: Compute the gdb tarball name by stripping
            '-git' rather than '-cvs'.
    
    Tested by running "src-release.sh gdb" and verifying the tarball
    name as well as its contents.

Diff:
---
 src-release.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src-release.sh b/src-release.sh
index 40d0126..64fa4c2 100755
--- a/src-release.sh
+++ b/src-release.sh
@@ -60,7 +60,7 @@ getver()
 	bfd/configure --version | sed -n -e '1s,.* ,,p'
     elif test -f $tool/common/create-version.sh; then
 	$tool/common/create-version.sh $tool 'dummy-host' 'dummy-target' VER.tmp
-	cat VER.tmp | grep 'version\[\]' | sed 's/.*"\([^"]*\)".*/\1/' | sed 's/-cvs$//'
+	cat VER.tmp | grep 'version\[\]' | sed 's/.*"\([^"]*\)".*/\1/' | sed 's/-git$//'
         rm -f VER.tmp
     elif test -f $tool/version.in; then
 	head -1 $tool/version.in


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]