summary refs log tree commit diff
path: root/doc/Makefile
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2018-03-26 14:04:19 -0400
committerGraham Christensen <graham@grahamc.com>2018-03-26 14:08:36 -0400
commita80856cec5811b9eb7778b157e5ea943db26e74b (patch)
treee1a4a72e305e73973bc4d0d0af3f0c5186af1e9e /doc/Makefile
parent2b3ba40c03a87d2e9c3e1bff9f07da2c2a3e885a (diff)
downloadnixpkgs-a80856cec5811b9eb7778b157e5ea943db26e74b.tar
nixpkgs-a80856cec5811b9eb7778b157e5ea943db26e74b.tar.gz
nixpkgs-a80856cec5811b9eb7778b157e5ea943db26e74b.tar.bz2
nixpkgs-a80856cec5811b9eb7778b157e5ea943db26e74b.tar.lz
nixpkgs-a80856cec5811b9eb7778b157e5ea943db26e74b.tar.xz
nixpkgs-a80856cec5811b9eb7778b157e5ea943db26e74b.tar.zst
nixpkgs-a80856cec5811b9eb7778b157e5ea943db26e74b.zip
nixpkgs docs: Use SVGs for callouts
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 52d1f4630a8..714a2a3e273 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -17,7 +17,7 @@ validate: manual-full.xml
 
 out/html/index.html: manual-full.xml style.css
 	mkdir -p out/html
-	xsltproc $$xsltFlags \
+	xsltproc ${xsltFlags} \
 		--nonet --xinclude \
 		--output $@ \
 		"$$XSL/docbook/xhtml/docbook.xsl" \
@@ -26,17 +26,19 @@ out/html/index.html: manual-full.xml style.css
 	cp ./style.css out/html/style.css
 
 	mkdir -p out/html/images/callouts
-	cp "$$XSL/docbook/images/callouts/"*.gif out/html/images/callouts/
+	cp "$$XSL/docbook/images/callouts/"*.svg out/html/images/callouts/
 	chmod u+w -R out/html/images/
 
 out/epub/manual.epub: manual-full.xml
 	mkdir -p out/epub/scratch
-	xsltproc $$xsltFlags --nonet \
+	xsltproc ${xsltFlags} --nonet \
 		--output out/epub/scratch/ \
 		"$$XSL/docbook/epub/docbook.xsl" \
 		./manual-full.xml
 
-	cp "$$XSL/docbook/images/callouts/"*.gif out/epub/scratch/OEBPS
+	cp ./style.css out/epub/scratch/OEBPS
+	mkdir -p out/epub/scratch/OEBPS/images/callouts/
+	cp "$$XSL/docbook/images/callouts/"*.svg out/epub/scratch/OEBPS/images/callouts/
 	echo "application/epub+zip" > mimetype
 	zip -0Xq "out/epub/manual.epub" mimetype
 	rm mimetype