[slime-cvs] CVS update: slime/doc/Makefile
Luke Gorrie
lgorrie at common-lisp.net
Tue Jun 22 14:06:56 UTC 2004
Update of /project/slime/cvsroot/slime/doc
In directory common-lisp.net:/tmp/cvs-serv18938/doc
Modified Files:
Makefile
Log Message:
(contributors.texi): The contributors list in the manual is now sorted
by most number of ChangeLog entries. Patch from Michael Weber.
Date: Tue Jun 22 07:06:56 2004
Author: lgorrie
Index: slime/doc/Makefile
diff -u slime/doc/Makefile:1.3 slime/doc/Makefile:1.4
--- slime/doc/Makefile:1.3 Fri Apr 16 12:31:11 2004
+++ slime/doc/Makefile Tue Jun 22 07:06:56 2004
@@ -42,15 +42,16 @@
# Some special-case TeX-escaping of international characters.
contributors.texi: ../ChangeLog Makefile texinfo-tabulate.awk
cat ../ChangeLog | \
- grep '^[0-9]' | \
- sed -e 's/^[^ ]* *//' -e 's/ *<.*//' | \
- (cat; echo 'Eric Marsden') | \
- sort -u | \
+ sed -ne '/^[0-9]/{s/^[^ ]* *//; s/ *<.*//; p;}' | \
+ sort -d | \
+ uniq -c | \
+ sort -nr| \
+ sed -e 's/^[^A-Z]*//' | \
awk -f texinfo-tabulate.awk | \
sed -e 's/\o370/@norsko{}/g' \
> $@
-.INTERMEDIATE: contributors.texi
+#.INTERMEDIATE: contributors.texi
# Debian's install-info wants a --section argument.
section := $(shell grep INFO-DIR-SECTION $(infofiles) | sed 's/INFO-DIR-SECTION //')
More information about the slime-cvs
mailing list