svn commit: r275613 - head/release/scripts
Glen Barber
gjb at FreeBSD.org
Mon Dec 8 15:45:08 UTC 2014
Author: gjb
Date: Mon Dec 8 15:45:07 2014
New Revision: 275613
URL: https://svnweb.freebsd.org/changeset/base/275613
Log:
Adjust the 'Relnotes:' search to look for any non-empty
string following the tag.
Sponsored by: The FreeBSD Foundation
Modified:
head/release/scripts/relnotes-search.sh
Modified: head/release/scripts/relnotes-search.sh
==============================================================================
--- head/release/scripts/relnotes-search.sh Mon Dec 8 15:10:48 2014 (r275612)
+++ head/release/scripts/relnotes-search.sh Mon Dec 8 15:45:07 2014 (r275613)
@@ -125,7 +125,7 @@ main() {
# All tests passed. Let's see what can possibly go wrong
# from here. The search string specified should match this
# in PCRE speak: ':[\t ]*'
- ${svn} log ${rev} --search 'Relnotes:?[^ ]*' ${1} > ${where}
+ ${svn} log ${rev} --search 'Relnotes:*[A-Za-z0-9]*' ${1} > ${where}
return $?
}
More information about the svn-src-head
mailing list