diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2020-01-21 21:01:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2020-01-21 21:02:20 +0000 |
commit | ae5251d49cb371fcaa8882c06c2a29b754ce51a0 (patch) | |
tree | 89e241ba04ff4ca28c422a680add91b327318ae6 | |
parent | Updating to standards version 4.5.0. (diff) | |
download | open-infrastructure-system-tools-ae5251d49cb371fcaa8882c06c2a29b754ce51a0.tar.xz open-infrastructure-system-tools-ae5251d49cb371fcaa8882c06c2a29b754ce51a0.zip |
Adding patch to fix FTBFS with newer asciidoc versions (Closes: #948903).
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r-- | debian/patches/series | 1 | ||||
-rw-r--r-- | debian/patches/upstream/0001-ftbfs-asciidoc.patch | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..cfc95e6 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +upstream/0001-ftbfs-asciidoc.patch diff --git a/debian/patches/upstream/0001-ftbfs-asciidoc.patch b/debian/patches/upstream/0001-ftbfs-asciidoc.patch new file mode 100644 index 0000000..f06dd65 --- /dev/null +++ b/debian/patches/upstream/0001-ftbfs-asciidoc.patch @@ -0,0 +1,15 @@ +Author: Daniel Baumann <daniel.baumann@progress-linux.org> +Description: Fixing FTBFS with newer asciidoc versions. + +diff -Naurp open-infrastructure-compute-tools.orig/system-images/share/man/Makefile open-infrastructure-compute-tools/system-images/share/man/Makefile +--- open-infrastructure-compute-tools.orig/system-images/share/man/Makefile ++++ open-infrastructure-compute-tools/system-images/share/man/Makefile +@@ -20,7 +20,7 @@ + # Depends: asciidoc dblatex docbook-xsl libxml2-utils source-highlight + + A2X = a2x \ +- --asciidoc-opts "-a revdate=$(shell cat ../../VERSION.txt)" \ ++ --asciidoc-opts="-a revdate=$(shell cat ../../VERSION.txt)" \ + --doctype=manpage + + SHELL := sh -e |