From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5380D138C9D for ; Mon, 1 Jun 2015 15:38:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8041E0875; Mon, 1 Jun 2015 15:38:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84A94E0875 for ; Mon, 1 Jun 2015 15:38:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6D382340A26 for ; Mon, 1 Jun 2015 15:38:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D61F9EA for ; Mon, 1 Jun 2015 15:38:46 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1433172995.d69dfccc03f157cf397ad66ec0db665e1df35473.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: / X-VCS-Repository: proj/devmanual X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d69dfccc03f157cf397ad66ec0db665e1df35473 X-VCS-Branch: master Date: Mon, 1 Jun 2015 15:38:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bfb2a03a-3ed3-4088-95a8-8acb77058464 X-Archives-Hash: ddd1f4f6f97715535dce45781192d43b commit: d69dfccc03f157cf397ad66ec0db665e1df35473 Author: Ulrich Müller gentoo org> AuthorDate: Mon Jun 1 15:36:35 2015 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Jun 1 15:36:35 2015 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=d69dfccc Makefile: Add missing dependency on XSL stylesheet. Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dd2d1c4..f22f304 100644 --- a/Makefile +++ b/Makefile @@ -7,11 +7,11 @@ prereq: @type -p convert &>/dev/null || { echo "media-gfx/imagemagick with corefonts, svg and truetype required" >&2; exit 1; }; \ type -p xsltproc &>/dev/null || { echo "dev-libs/libxslt is required" >&2; exit 1; } -%index.html : %text.xml +%index.html : %text.xml devbook.xsl xsltproc devbook.xsl $< > $@ # Someone should figure out a way to put this to the pattern -index.html : text.xml +index.html : text.xml devbook.xsl xsltproc devbook.xsl $< > $@ %.png : %.svg