From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) by sourceware.org (Postfix) with ESMTPS id B0363387700E for ; Sat, 14 Mar 2020 22:46:50 +0000 (GMT) Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id 524C733E46; Sat, 14 Mar 2020 18:46:50 -0400 (EDT) Received: from [192.168.1.2] (unknown [77.118.128.58]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id BD0EA33E43; Sat, 14 Mar 2020 18:46:49 -0400 (EDT) Date: Sat, 14 Mar 2020 23:46:45 +0100 (CET) From: Gerald Pfeifer To: overseers@gcc.gnu.org cc: David Malcolm Subject: /usr/bin/sphinx-1.0-build: Command not found Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Spam-Status: No, score=0.0 required=5.0 tests=SPF_HELO_NONE, SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: overseers@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Overseers mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Mar 2020 22:46:51 -0000 The crontab of the gccadmin account invokes /home/gccadmin/scripts/update_web_docs_git once a day. Presumably since the migration this has been failing as follows: Output written on libiberty.pdf (52 pages, 356199 bytes). Transcript written on libiberty.log. /tmp/gcc-doc-update.43504/gcc/gcc/jit/docs /tmp/gcc-doc-update.43504 /usr/bin/sphinx-1.0-build -b html -d _build/doctrees . _build/html make: /usr/bin/sphinx-1.0-build: Command not found make: *** [Makefile:45: html] Error 127 /tmp/gcc-doc-update.43504 cp: cannot stat 'gcc/gcc/jit/docs/_build/html': No such file or directory The script currently has the following comment: # The jit is a special-case, using sphinx rather than texinfo. # Specifically, the jit docs need sphinx 1.0 or later. # # The jit/docs Makefile uses the executable $(SPHINXBUILD), # defaulting to "sphinx-build". # # sphinx is packaged in Fedora and EPEL 6 within "python-sphinx", # and in openSUSE within "python-Sphinx". # # For EPEL6, python-sphinx is sphinx 0.6.6, which is missing various # directives (e.g. ":c:macro:"), so we need the variant # python-sphinx10 package. The latter installs its executable as # /usr/bin/sphinx-1.0-build # so we need to override SPHINXBUILD with this when invoking "make". David (copied) contributed this piece, so may be able to help with any questions. Gerald