diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-03-13 15:00:08 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-03-13 15:02:32 +0100 |
commit | 9c7e90f414067eb59170bde952d5b8ac03c8f46c (patch) | |
tree | 0a06bc2e04f59ec6b30c886e159fa280d8815e7f /doc/manual/local.mk | |
parent | cc5c81822d298544489ea0861d266c3a5137759a (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.
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 4376c3644..b4e7f35d5 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))) |