Added tool to generate ChangeLog files from CVS log entries. This
originated with MaiSQL.
This commit is contained in:
5
tools/make-changelogs.sh
Executable file
5
tools/make-changelogs.sh
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
for dir in `find . -type d -and -not '(' -name 'CVS' -or -name 'html' ')'`
|
||||
do
|
||||
( cd $dir ; [ -d CVS -a -r CVS/Entries ] && [ "`sed -n -e '/^\/[^/]*\//p' CVS/Entries | sed 's/^\/\([^/]*\)\/.*$/\1/'| wc -l`" -gt 0 ] && rcs2log -u 'dent Pierre R. Mai pmai@pmsf.de' `sed -n -e '/^\/[^/]*\//p' CVS/Entries | sed 's/^\/\([^/]*\)\/.*$/\1/'` > ChangeLog )
|
||||
done
|
||||
Reference in New Issue
Block a user