diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-15 14:57:09 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-15 14:57:09 -0700 |
commit | 71931c19658bd99747ebbb93f0155384ba97df2c (patch) | |
tree | b65275757c69df96e5ed7c2f837482457f9eca7e /Documentation/Makefile | |
parent | 3eb5128a108d59be350ce7f43d1579d588158430 (diff) | |
download | git-71931c19658bd99747ebbb93f0155384ba97df2c.tar.gz git-71931c19658bd99747ebbb93f0155384ba97df2c.tar.xz |
Fix up "make doc"
Fix 'git-var.txt' and use "-b xhtml11" instead of "-b css-embedded" to
make asciidoc 7.0.1 happy.
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 137f28fe0..4798933a4 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -45,7 +45,7 @@ clean: rm -f *.xml *.html *.1 *.7 %.html : %.txt - asciidoc -b css-embedded -d manpage $< + asciidoc -b xhtml11 -d manpage $< %.1 %.7 : %.xml xmlto man $< |