diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-04-11 19:44:12 +0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2007-05-02 22:58:11 +0400 |
commit | f15a3ccdc800cef08b346fef5f96860a05e7a3fa (patch) | |
tree | 0a3e0f9a7165092153a26869c13c9e492dbc0b12 /Documentation | |
parent | 7ac1c145250adaccf4dbde77a8f811e937aa43c8 (diff) | |
download | linux-f15a3ccdc800cef08b346fef5f96860a05e7a3fa.tar.xz |
kernel-doc: alphabetically-sorted entries in index.html of 'htmldocs'
Make docbook index.html contain sorted output.
I prefer to let the computer do it. This also avoids
people not reading the comment(s).
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/DocBook/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile index 960f4025ee86..10b5cd6c54a0 100644 --- a/Documentation/DocBook/Makefile +++ b/Documentation/DocBook/Makefile @@ -41,7 +41,7 @@ psdocs: $(PS) PDF := $(patsubst %.xml, %.pdf, $(BOOKS)) pdfdocs: $(PDF) -HTML := $(patsubst %.xml, %.html, $(BOOKS)) +HTML := $(sort $(patsubst %.xml, %.html, $(BOOKS))) htmldocs: $(HTML) MAN := $(patsubst %.xml, %.9, $(BOOKS)) |