From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mout-p-201.mailbox.org (mout-p-201.mailbox.org [80.241.56.171]) by sourceware.org (Postfix) with ESMTPS id 5B22A3858CDA for ; Thu, 6 Apr 2023 10:37:52 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 5B22A3858CDA Authentication-Results: sourceware.org; dmarc=pass (p=reject dis=none) header.from=aarsen.me Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=aarsen.me Received: from smtp2.mailbox.org (smtp2.mailbox.org [IPv6:2001:67c:2050:b231:465::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-201.mailbox.org (Postfix) with ESMTPS id 4PsdHd30Ypz9sZ1; Thu, 6 Apr 2023 12:37:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=aarsen.me; s=MBO0001; t=1680777469; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=ak0DNAbvLmVQhs4fkWlOmChSCrbNjjA2RNcetcdkJnA=; b=1nLyCZiHsmwLPgV6PyvhE4A8mfVunzKT8Rl/2IZs1WCv6QysCqQoWo7kvoJh/+TEj3uayQ sGvCeXaKULqXvvGWY0zyXnTM8TXGGDj0n6/VFos7H1oMbIkIEiDyXCHkrHfm7UlHbu/tXF oZfvPtxNAx4KMXX8CHam91WVywMR1gNvtYte43C5Fu0bAY5ICF4qgXo4Qw7cXmDJMr4pAt ElgBq4E5C52v8gXS2TE/sAW+0KHaCVMQfaXS8NkNt3HYwL+QSwk8HgNXoRPJKA5DbVQyg0 Qj6GMUZ7aaFekV/SdYd5NqRIGSk7x+Fa2xlGq+D5Gvyp6KvQZfNjoaTmNFzGwg== From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= To: gcc-patches@gcc.gnu.org Cc: Gerald Pfeifer , =?UTF-8?q?Arsen=20Arsenovi=C4=87?= Subject: [PATCH] update_web_docs_git: Add updated Texinfo to PATH Date: Thu, 6 Apr 2023 12:35:34 +0200 Message-Id: <20230406103533.1087349-1-arsen@aarsen.me> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4PsdHd30Ypz9sZ1 X-Spam-Status: No, score=-11.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_INFOUSMEBIZ,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: maintainer-scripts/ChangeLog: * update_web_docs_git: Add updated Texinfo to PATH --- Hi, I'm posting this as a ping and a patch necessary to get the wwwdocs building with the new Texinfo version that's installed on gcc.gnu.org. It would be nice to do this ahead of the GCC 13 release. I must ask that whoever decides to apply/update the script tests texi2any with a simple example, like echo @node Top | ~/texinfo/install-git/bin/makeinfo --html -o - ... before updating; this should be a representative enough smoke test. You should see some HTML output with little text in it. It might also be wise to test the script directly by using a different WWWBASE, just in case, even though it should be safe. Thanks in advance, have a lovely day. maintainer-scripts/update_web_docs_git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainer-scripts/update_web_docs_git b/maintainer-scripts/update_web_docs_git index d44ab27c1b7..f9006b1f45b 100755 --- a/maintainer-scripts/update_web_docs_git +++ b/maintainer-scripts/update_web_docs_git @@ -12,7 +12,7 @@ set -e GITROOT=${GITROOT:-"/git/gcc.git"} export GITROOT -PATH=/usr/local/bin:$PATH +PATH=/home/gccadmin/texinfo/install-git/bin:/usr/local/bin:$PATH MANUALS="cpp cppinternals -- 2.40.0