diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-03-13T14·00+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-03-13T14·07+0100 |
commit | d77eaf79765d685fa9a91d961858d07813cd2d20 (patch) | |
tree | 2f3b45a8379523b5452c0ca849dfc90c04ea1656 /doc/manual/local.mk | |
parent | 8999beacc3ef4f98ebaa75630318cdc3e7cb200e (diff) |
style.css: Remove
This file is licensed under the GPL. Originally, Nix was also GPL-licensed so that was fine. However, we later changed the license to the LGPL but missed the fact that style.css has an incompatible license. Since the Nix manual at nixos.org uses its own styling, we can remove this file. Fixes #3392. (cherry picked from commit 9c7e90f414067eb59170bde952d5b8ac03c8f46c)
Diffstat (limited to 'doc/manual/local.mk')
-rw-r--r-- | doc/manual/local.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/manual/local.mk b/doc/manual/local.mk index 4376c3644d38..b4e7f35d5017 100644 --- a/doc/manual/local.mk +++ b/doc/manual/local.mk @@ -4,7 +4,6 @@ ifeq ($(doc_generate),yes) XSLTPROC = $(xsltproc) --nonet $(xmlflags) \ --param section.autolabel 1 \ --param section.label.includes.component.label 1 \ - --param html.stylesheet \'style.css\' \ --param xref.with.number.and.title 1 \ --param toc.section.depth 3 \ --param admon.style \'\' \ @@ -66,7 +65,7 @@ $(d)/manual.html: $(d)/manual.xml $(MANUAL_SRCS) $(d)/manual.is-valid $(docbookxsl)/profiling/profile.xsl $< | \ $(XSLTPROC) --output $@ $(docbookxsl)/xhtml/docbook.xsl - -$(foreach file, $(d)/manual.html $(d)/style.css, $(eval $(call install-data-in, $(file), $(docdir)/manual))) +$(foreach file, $(d)/manual.html, $(eval $(call install-data-in, $(file), $(docdir)/manual))) $(foreach file, $(wildcard $(d)/figures/*.png), $(eval $(call install-data-in, $(file), $(docdir)/manual/figures))) |