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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 47A6715800F for ; Mon, 23 Jan 2023 02:10:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22404E07E6; Mon, 23 Jan 2023 02:10:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 040C5E07E6 for ; Mon, 23 Jan 2023 02:10:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C1F9340CCE for ; Mon, 23 Jan 2023 02:10:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9B664C8 for ; Mon, 23 Jan 2023 02:10:38 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1674362322.9fb7fc342f28f8342d8de6ca2d71b1cf2b765ae3.sam@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: man/ X-VCS-Repository: proj/pax-utils X-VCS-Files: man/meson.build X-VCS-Directories: man/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9fb7fc342f28f8342d8de6ca2d71b1cf2b765ae3 X-VCS-Branch: master Date: Mon, 23 Jan 2023 02:10:38 +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: 4ab1254b-0eb5-49be-ac8e-b43f06b3e847 X-Archives-Hash: 6cac3050963113eaa5d4fc7c629707a4 commit: 9fb7fc342f28f8342d8de6ca2d71b1cf2b765ae3 Author: Sam James gentoo org> AuthorDate: Sun Jan 22 04:11:18 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 22 04:38:42 2023 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=9fb7fc34 meson: fix installation of (pre-generated) man pages w/o xmlto Fixes: 502631b86d63c4604b0ed78ad86a054e9726e897 Signed-off-by: Sam James gentoo.org> man/meson.build | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/man/meson.build b/man/meson.build index 130c8ec..09ac0d5 100644 --- a/man/meson.build +++ b/man/meson.build @@ -1,8 +1,4 @@ -xmlto = find_program('xmlto', required : get_option('build_manpages')) - -if not xmlto.found() - subdir_done() -endif +xmlto = find_program('xmlto', required : get_option('build_manpages'), disabler: true) docbook_conf = configuration_data() docbook_conf.set('version', meson.project_version())