Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: /
Date: Mon, 01 Jun 2015 15:38:53
Message-Id: 1433172995.d69dfccc03f157cf397ad66ec0db665e1df35473.ulm@gentoo
1 commit: d69dfccc03f157cf397ad66ec0db665e1df35473
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 1 15:36:35 2015 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 1 15:36:35 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=d69dfccc
7
8 Makefile: Add missing dependency on XSL stylesheet.
9
10 Makefile | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/Makefile b/Makefile
14 index dd2d1c4..f22f304 100644
15 --- a/Makefile
16 +++ b/Makefile
17 @@ -7,11 +7,11 @@ prereq:
18 @type -p convert &>/dev/null || { echo "media-gfx/imagemagick with corefonts, svg and truetype required" >&2; exit 1; }; \
19 type -p xsltproc &>/dev/null || { echo "dev-libs/libxslt is required" >&2; exit 1; }
20
21 -%index.html : %text.xml
22 +%index.html : %text.xml devbook.xsl
23 xsltproc devbook.xsl $< > $@
24
25 # Someone should figure out a way to put this to the pattern
26 -index.html : text.xml
27 +index.html : text.xml devbook.xsl
28 xsltproc devbook.xsl $< > $@
29
30 %.png : %.svg