]> git.saurik.com Git - bison.git/blob - etc/make-ChangeLogs
Less memory pressure on the "list" bench.
[bison.git] / etc / make-ChangeLogs
1 #! /bin/sh
2
3 for dir in . po src doc; do
4 (
5 cd $dir && rcs2log -r -l \
6 -u 'akim Akim Demaille akim@epita.fr' \
7 -u 'djm David J. MacKenzie djm@gnu.org' \
8 -u 'eggert Paul Eggert eggert@gnu.org' \
9 -u 'friedman Noah Friedman friedman@gnu.org' \
10 -u 'hag Daniel Hagerty hag@gnu.org' \
11 -u 'jthilo Jesse Thilo jthilo@gnu.org' \
12 -u 'meyering Jim Meyering meyering@gnu.org' \
13 -u 'rms Richard Stallman rms@gnu.org' \
14 | sed -e 's,/opt/cvs/bison/bison/,,g' > ChangeLog
15 )
16 done