From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26255 invoked by alias); 31 Mar 2018 17:32:26 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 26226 invoked by uid 89); 31 Mar 2018 17:32:26 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.3 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_NUMSUBJECT,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=investigate, Jan, jan, Package X-HELO: mx1.redhat.com Received: from mx3-rdu2.redhat.com (HELO mx1.redhat.com) (66.187.233.73) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 31 Mar 2018 17:32:24 +0000 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id BFD2F8425D for ; Sat, 31 Mar 2018 17:32:22 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-55.ams2.redhat.com [10.36.116.55]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4FF382026DFD for ; Sat, 31 Mar 2018 17:32:22 +0000 (UTC) Date: Sat, 31 Mar 2018 17:32:00 -0000 From: Jan Kratochvil To: gdb-patches@sourceware.org Subject: [patch] Fix gdb/doc/ PDF build on Fedora Rawhide==F-29 Message-ID: <20180331173219.GA18607@host1.jankratochvil.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="2fHTh5uZTiUOsy+g" Content-Disposition: inline User-Agent: Mutt/1.9.2 (2017-12-15) X-SW-Source: 2018-03/txt/msg00635.txt.bz2 --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 587 Hi, on Fedora Rawhide==F-29 PDF build fails with: https://kojipkgs.fedoraproject.org//work/tasks/2102/26052102/build.log texi2dvi --pdf -I ../../../gdb/doc/../mi -I ../../../gdb/doc \ ../../../gdb/doc/gdb.texinfo ! I can't find file `texinfo.tex'. TBH I do not see how the file could be found in earlier versions. Also both F-29 and F-28 have texinfo-tex-6.5-3.fc28.x86_64 while in F-28 it still builds fine but in F-29 it does not - so apparently it depends on some other package. But I did not investigate why as IMO the patch below is a logical one. OK for check-in? Jan --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: inline; filename="gdb-texinfo-path.patch" Content-length: 489 gdb/ChangeLog 2018-03-31 Jan Kratochvil * doc/Makefile.in (TEXI2DVI): Add $(SET_TEXINPUTS). diff --git a/gdb/doc/Makefile.in b/gdb/doc/Makefile.in index 0323bc4ecb..fa745b3542 100644 --- a/gdb/doc/Makefile.in +++ b/gdb/doc/Makefile.in @@ -63,7 +63,7 @@ MAKEHTMLFLAGS = TEXI2ROFF=texi2roff # where to find texi2dvi, ditto -TEXI2DVI=texi2dvi +TEXI2DVI=$(SET_TEXINPUTS) texi2dvi # Package to install the docs under PACKAGE = @PACKAGE@ -- 2.17.0.rc1 --2fHTh5uZTiUOsy+g--