blob: 75076f52f0838ea1a52513a0493e7fd6fc19e51c [file] [log] [blame]
Brad Bishop15ae2502019-06-18 21:44:24 -04001From 321a602098d11ee712ebd01f51033b5fd369eae9 Mon Sep 17 00:00:00 2001
2From: Patrick Ohly <patrick.ohly@intel.com>
3Date: Wed, 13 May 2015 03:41:02 -0700
4Subject: [PATCH] Makefile.am: disable man page creation
5
6Depends on asciidoc, which is not available.
7
8Upstream-Status: Inappropriate [embedded specific]
9
10Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
11---
12 Makefile.am | 19 ++++++++++++++++++-
13 1 file changed, 18 insertions(+), 1 deletion(-)
14
15diff --git a/Makefile.am b/Makefile.am
16index 06ebf59..4ddd52c 100644
17--- a/Makefile.am
18+++ b/Makefile.am
19@@ -1,5 +1,5 @@
20 SUBDIRS = src
21-dist_man_MANS = evmctl.1
22+# dist_man_MANS = evmctl.1
23
24 doc_DATA = examples/ima-genkey-self.sh examples/ima-genkey.sh examples/ima-gen-local-ca.sh
25 EXTRA_DIST = autogen.sh $(doc_DATA)
26@@ -39,4 +39,21 @@ rmman:
27
28 doc: evmctl.1.html rmman evmctl.1
29
30+# requires asciidoc, xslproc, docbook-xsl
31+# FIXME Disabled until docbook-xsl is unavaliable on tizen.org
32+#MANPAGE_DOCBOOK_XSL = /usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl
33+#
34+#evmctl.1.html: README
35+# @asciidoc -o $@ $<
36+#
37+#evmctl.1:
38+# asciidoc -d manpage -b docbook -o evmctl.1.xsl README
39+# xsltproc --nonet -o $@ $(MANPAGE_DOCBOOK_XSL) evmctl.1.xsl
40+# rm -f evmctl.1.xsl
41+#
42+#rmman:
43+# rm -f evmctl.1
44+#
45+#doc: evmctl.1.html rmman evmctl.1
46+
47 .PHONY: $(tarname)
48--
491.8.4.5
50