Browse Source

who makes these decisions at gnu texinfo... argh!

ng0 4 years ago
parent
commit
bf7912bb4d
2 changed files with 11 additions and 3 deletions
  1. 5 1
      doc/handbook/Makefile.am
  2. 6 2
      doc/tutorial/Makefile.am

+ 5 - 1
doc/handbook/Makefile.am

@@ -22,7 +22,11 @@ AM_MAKEINFOHTMLFLAGS = --no-split --css-include=style.css --css-include=manual.c
 else
 # In the 5.x version they added `--split=chapters|sections` in
 # addition to `--split=nodes`.
-AM_MAKEINFOHTMLFLAGS = --split=sections --css-ref="../style.css" --css-ref="../manual.css"
+# Hold on to your hats: In version 6.5 this is already removed, ffs.
+# GNU Texinfo, please be more consistent than 1 version in switches.
+# This however is compatible to version 5.2. Thanks, I hate it.
+# AM_MAKEINFOHTMLFLAGS = --split=sections --css-ref="../style.css" --css-ref="../manual.css"
+AM_MAKEINFOHTMLFLAGS = --split --css-ref="../style.css" --css-ref="../manual.css"
 endif
 
 dist_infoimage_DATA =                           		\

+ 6 - 2
doc/tutorial/Makefile.am

@@ -20,7 +20,11 @@ AM_MAKEINFOHTMLFLAGS = --no-split --css-include=style.css --css-include=manual.c
 else
 # In the 5.x version they added `--split=chapters|sections` in
 # addition to `--split=nodes`.
-AM_MAKEINFOHTMLFLAGS = --split=sections --css-ref="style.css" --css-ref="manual.css"
+# Hold on to your hats: In version 6.5 this is already removed, ffs.
+# GNU Texinfo, please be more consistent than 1 version in switches.
+# This however is compatible to version 5.2. Thanks, I hate it.
+# AM_MAKEINFOHTMLFLAGS = --split=sections --css-ref="../style.css" --css-ref="../manual.css"
+AM_MAKEINFOHTMLFLAGS = --split --css-ref="../style.css" --css-ref="../manual.css"
 endif
 
 #DOT_OPTIONS =							\
@@ -137,7 +141,7 @@ dev-build: version.texi/replacement
 clean: version.texi/replacement/revert
 	@rm -f gnunet-tutorial.pdf
 	@rm -f gnunet-tutorial.info
-	@rm -f gnunet-tutorial.html
+	@rm -rf gnunet-tutorial.html
 	@rm -fr gnunet-tutorial.t2p
 
 # CLEANFILES =						\