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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BFB7515838C for ; Sun, 28 Jan 2024 17:40:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52B32E2A13; Sun, 28 Jan 2024 17:40:32 +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 38520E2A13 for ; Sun, 28 Jan 2024 17:40:32 +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 23EEC34347F for ; Sun, 28 Jan 2024 17:40:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89B64FA7 for ; Sun, 28 Jan 2024 17:40:29 +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: <1706463476.2946a248b51498850ee7e672c13eaa85b7574eb3.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: 2946a248b51498850ee7e672c13eaa85b7574eb3 X-VCS-Branch: master Date: Sun, 28 Jan 2024 17:40:29 +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: be94a792-a9f3-4c32-811d-f87ab871baee X-Archives-Hash: 1f8431fd5108bdcf1ab33cd54f528a41 commit: 2946a248b51498850ee7e672c13eaa85b7574eb3 Author: Ulrich Müller gentoo org> AuthorDate: Sun Jan 28 17:37:56 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Jan 28 17:37:56 2024 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=2946a248 Makefile: Drop obsolete test for xmllint --quiet Signed-off-by: Ulrich Müller gentoo.org> Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e75cbf1..1bfa86e 100644 --- a/Makefile +++ b/Makefile @@ -87,10 +87,8 @@ install: all install -m 644 $(JS_FILES) "$(DESTDIR)$(htmldir)"/; \ fi -# Not all versions of xmllint support --quiet, so test for it first validate: devbook.rng - @opt=--quiet; xmllint --help 2>&1 | grep -q -- --quiet || opt=; \ - xmllint --noout $${opt} --relaxng $< $(XMLS) + @xmllint --noout --quiet --relaxng $< $(XMLS) @echo "xmllint validation successful" %.rng: %.rnc