diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-10-02 20:08:50 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-10-02 20:08:50 +0200 |
commit | b297ece0b5663aca97d30927a32c20ccce97eb2a (patch) | |
tree | bde8baa6ace6638f4e9a21993dbbda12891594b5 /meta-oe/recipes-core/systemd/systemd/0001-disable-xsltproc-completely.patch | |
parent | f3d859c4c93a41856e36b858064c12261c004098 (diff) | |
download | meta-openembedded-b297ece0b5663aca97d30927a32c20ccce97eb2a.tar.gz |
systemd: update to latest git
Fix docbook-xsl problem by forcing the xsltproc check to false
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-core/systemd/systemd/0001-disable-xsltproc-completely.patch')
-rw-r--r-- | meta-oe/recipes-core/systemd/systemd/0001-disable-xsltproc-completely.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/systemd/systemd/0001-disable-xsltproc-completely.patch b/meta-oe/recipes-core/systemd/systemd/0001-disable-xsltproc-completely.patch new file mode 100644 index 0000000000..24940c780d --- /dev/null +++ b/meta-oe/recipes-core/systemd/systemd/0001-disable-xsltproc-completely.patch | |||
@@ -0,0 +1,36 @@ | |||
1 | From 2649787d76cfe7d89abb1b5afab7cb7cd54b601b Mon Sep 17 00:00:00 2001 | ||
2 | From: Koen Kooi <koen@dominion.thruhere.net> | ||
3 | Date: Sun, 2 Oct 2011 19:54:29 +0200 | ||
4 | Subject: [PATCH] docs: fix build without xsltproc | ||
5 | |||
6 | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> | ||
7 | --- | ||
8 | |||
9 | Upstream-status: Pending | ||
10 | |||
11 | Makefile.am | 2 ++ | ||
12 | 2 files changed, 2 insertions(+), 1 deletions(-) | ||
13 | |||
14 | diff --git a/Makefile.am b/Makefile.am | ||
15 | index f4a17aa..01240a5 100644 | ||
16 | --- a/Makefile.am | ||
17 | +++ b/Makefile.am | ||
18 | @@ -750,6 +750,7 @@ EXTRA_DIST += \ | ||
19 | src/dbus-loop.h \ | ||
20 | src/spawn-agent.h | ||
21 | |||
22 | +if HAVE_XSLTPROC | ||
23 | MANPAGES = \ | ||
24 | man/systemd.1 \ | ||
25 | man/systemctl.1 \ | ||
26 | @@ -844,6 +845,7 @@ EXTRA_DIST += \ | ||
27 | $(XML_IN_FILES) \ | ||
28 | ${nodist_man_MANS:=.in} \ | ||
29 | ${XML_IN_FILES:.xml.in=.html.in} | ||
30 | +endif | ||
31 | |||
32 | systemd_SOURCES = \ | ||
33 | src/main.c | ||
34 | -- | ||
35 | 1.6.6.1 | ||
36 | |||