diff options
author | ng0 <ng0@infotropique.org> | 2017-10-21 15:45:29 +0000 |
---|---|---|
committer | ng0 <ng0@infotropique.org> | 2017-10-21 15:45:29 +0000 |
commit | f40c4ab2de20ec6a070b3c07a082633be10be80f (patch) | |
tree | 8f696b30743f4cf065f59e766a5f78bf564719ca /contrib/packages/guix/gnunet-doc.scm | |
parent | f454f1fc042c42ee1dc87c7837b655a45ef327b5 (diff) |
doc changes
modified: contrib/packages/guix/gnunet-doc.scm
adapt to the changes in this mixed commit
modified: doc/.gitignore
add new files
modified: doc/Makefile.am
make use of canonical, included, rules
generate html output with docstyle.css from taler exchange.
modified: doc/chapters/installation.texi
new file: doc/chapters/vocabulary.texi
modified: doc/gnunet-c-tutorial.texi
modified: doc/gnunet.texi
new file: doc/docstyle.css
not really in use yet, but collected for later:
doc/gendocs.sh , doc/hacks.el
Diffstat (limited to 'contrib/packages/guix/gnunet-doc.scm')
-rw-r--r-- | contrib/packages/guix/gnunet-doc.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/packages/guix/gnunet-doc.scm b/contrib/packages/guix/gnunet-doc.scm index da714077f..98ab0ede7 100644 --- a/contrib/packages/guix/gnunet-doc.scm +++ b/contrib/packages/guix/gnunet-doc.scm @@ -144,7 +144,10 @@ (replace 'build (lambda _ (chdir "doc") - (zero? (system* "make" "doc-all-give-me-the-noise")))) + (zero? (system* "make" "pdf")) + (zero? (system* "make" "html")) + (zero? (system* "make" "info")))) + ;;(zero? (system* "make" "doc-all-give-me-the-noise")))) (replace 'install (lambda _ (zero? (system* "make" "doc-all-install"))))))) |