diff options
author | Pierre Labastie <pierre.labastie@neuf.fr> | 2024-01-17 14:49:48 +0100 |
---|---|---|
committer | Pierre Labastie <pierre.labastie@neuf.fr> | 2024-01-17 14:49:48 +0100 |
commit | 91f4b2df5790c0cfec7319a41b63dc071e34fac3 (patch) | |
tree | acaa66aa70321acbb27d4a865cbc9af0757e0a68 | |
parent | d5fda0bce5cf42774c669dbefb71f84f8bc6e745 (diff) |
SImplify Makefile now that we have fixed DB-xsl bug
-rw-r--r-- | Makefile | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -35,9 +35,6 @@ else DUMPDIR ?= ~/lfs-sysd-commands endif -# https://github.com/docbook/xslt10-stylesheets/issues/239 -SED_XMLNS_XLINK = sed -i 's/xmlns:xlink.*xlink"//' - book: validate profile-html @echo "Generating chunked XHTML files at $(BASEDIR)/ ..." $(Q)xsltproc --nonet \ @@ -51,7 +48,6 @@ book: validate profile-html $(Q)mkdir -p $(BASEDIR)/stylesheets $(Q)cp stylesheets/lfs-xsl/*.css $(BASEDIR)/stylesheets $(Q)sed -i 's|../stylesheet|stylesheet|' $(BASEDIR)/index.html - $(Q)$(SED_XMLNS_XLINK) $(BASEDIR)/longindex.html $(Q)mkdir -p $(BASEDIR)/images $(Q)cp images/*.png $(BASEDIR)/images @@ -104,7 +100,6 @@ nochunks: validate profile-html $(RENDERTMP)/lfs-html.xml # $(RENDERTMP)/lfs-html2.xml - $(Q)$(SED_XMLNS_XLINK) $(BASEDIR)/$(NOCHUNKS_OUTPUT) @echo "Running Tidy..." $(Q)tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true |