]> git.saurik.com Git - bison.git/commitdiff
# Added script to build ChangeLogs
authorJesse Thilo <jthilo@gnu.org>
Thu, 9 Mar 2000 18:01:20 +0000 (18:01 +0000)
committerJesse Thilo <jthilo@gnu.org>
Thu, 9 Mar 2000 18:01:20 +0000 (18:01 +0000)
etc/make-ChangeLogs [new file with mode: 0755]

diff --git a/etc/make-ChangeLogs b/etc/make-ChangeLogs
new file mode 100755 (executable)
index 0000000..e8099bc
--- /dev/null
@@ -0,0 +1,16 @@
+#! /bin/sh
+
+for dir in . po src doc; do
+  (
+    cd $dir && rcs2log -r -l \
+  -u 'akim     Akim Demaille   akim@epita.fr' \
+  -u 'djm      David J. MacKenzie      djm@gnu.org' \
+  -u 'eggert   Paul Eggert     eggert@gnu.org' \
+  -u 'friedman Noah Friedman   friedman@gnu.org' \
+  -u 'hag      Daniel Hagerty  hag@gnu.org' \
+  -u 'jthilo   Jesse Thilo     jthilo@gnu.org' \
+  -u 'meyering Jim Meyering    meyering@gnu.org' \
+  -u 'rms      Richard Stallman        rms@gnu.org' \
+  > ChangeLog
+  )
+done