diff options
-rwxr-xr-x | buildlib/mkChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/buildlib/mkChangeLog b/buildlib/mkChangeLog new file mode 100755 index 000000000..c54a4333d --- /dev/null +++ b/buildlib/mkChangeLog @@ -0,0 +1,13 @@ +#!/bin/sh + +NAMES="`sed -ne 's/^.*CVS:\([^ ]\+\) \([^<]\+\) <\([^>]*\)>/\ + -u '\''\1:\2:\3'\''/gp' AUTHORS`" +OPTIONS="-l 78" + +# Generate the standard ChangeLog +echo CVSIGNORE=po rcs2log $OPTIONS $NAMES +eval CVSIGNORE=po rcs2log $OPTIONS $NAMES >> ChangeLog + +# Generate the po ChangeLog +echo rcs2log $OPTIONS $NAMES po +eval rcs2log $OPTIONS $NAMES po >> po/ChangeLog |