From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DB1D9138334 for ; Thu, 19 Dec 2019 21:02:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3CD7E0930; Thu, 19 Dec 2019 21:02:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA844E091F for ; Thu, 19 Dec 2019 21:02:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B564834DA3A for ; Thu, 19 Dec 2019 21:02:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B78F97A for ; Thu, 19 Dec 2019 21:02:44 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1576788785.74bc977dfc56f07b065e85abdde70c075775d829.gokturk@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: / X-VCS-Repository: proj/devmanual X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 74bc977dfc56f07b065e85abdde70c075775d829 X-VCS-Branch: master Date: Thu, 19 Dec 2019 21:02:44 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1241fe67-84bf-456e-b4d5-8781a479a83e X-Archives-Hash: c47425561c71513c38e8de6f1041893c commit: 74bc977dfc56f07b065e85abdde70c075775d829 Author: Lucas Ramage gmx us> AuthorDate: Mon Nov 18 13:56:37 2019 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Thu Dec 19 20:53:05 2019 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=74bc977d Ensure Python is enabled for dev-libs/libxslt Required to build the Lunr search index Signed-off-by: Göktürk Yüksek gentoo.org> Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 343234b..ac024b6 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ prereq: { echo "media-gfx/imagemagick[corefonts,svg,truetype] required" >&2;\ exit 1; } @type xsltproc >/dev/null 2>&1 || \ - { echo "dev-libs/libxslt is required" >&2;\ + { echo "dev-libs/libxslt is with python required" >&2;\ exit 1; } @type xmllint >/dev/null 2>&1 || \ { echo "dev-libs/libxml2 is required" >&2;\