diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/svnchangelog | 2 | ||||
-rwxr-xr-x | Master/tlpkg/bin/svnchangelog.sed | 43 |
2 files changed, 1 insertions, 44 deletions
diff --git a/Master/tlpkg/bin/svnchangelog b/Master/tlpkg/bin/svnchangelog index d7660b7e120..66d4e3584b3 100755 --- a/Master/tlpkg/bin/svnchangelog +++ b/Master/tlpkg/bin/svnchangelog @@ -68,7 +68,7 @@ if ! $chicken && $rotate; then fi # prepend new changes to current log, and put log messages first. -$mydir/svnchangelog.sed $newlogs >$outfile.new +$mydir/../libexec/svnchangelog.sed $newlogs >$outfile.new cat $outfile >>$outfile.new if $debug; then # really debug diff --git a/Master/tlpkg/bin/svnchangelog.sed b/Master/tlpkg/bin/svnchangelog.sed deleted file mode 100755 index 699cacce1f9..00000000000 --- a/Master/tlpkg/bin/svnchangelog.sed +++ /dev/null @@ -1,43 +0,0 @@ -#! /bin/sed -nf -# $Id$ -# Written by Werner Lemberg, 25may06. Public domain. -# svn log outputs the paths first, then the log message. This sed -# script reverses that. - -:main -/------------------------------------------------------------------------/ { - p - n - /r[0-9][0-9]* / { - p - n - /^Changed paths:$/ { - h - n - - :loop1 - /^$/! { - H - n - bloop1 - } - - :loop2 - /------------------------------------------------------------------------/! { - p - n - bloop2 - } - - i\ - - x - p - g - bmain - } - } - bmain -} - -p |