From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7083 invoked by alias); 1 Aug 2002 22:20:38 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 7076 invoked from network); 1 Aug 2002 22:20:38 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 1 Aug 2002 22:20:38 -0000 Received: from ges.redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id C537E3C63; Thu, 1 Aug 2002 18:20:38 -0400 (EDT) Message-ID: <3D49B436.9060308@ges.redhat.com> Date: Thu, 01 Aug 2002 15:20:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020708 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Pierre Le Gallo Cc: gdb-patches@sources.redhat.com Subject: Re: make dvi fails on insight-5.2.1 cygnus References: <000a01c2360d$5e1e6440$fb4a0950@RITA2002> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-08/txt/msg00030.txt.bz2 > Hello, > > make dvi fails on insight-5.2.1 cygnus. After poking around, I found that the problem is when texi2dvi (version 0.51) checks for macro extension in texinfo.tex. To do that it inputs texinfo.tex and sed ont it. Does it also fail for straight GDB? If it does, can you create a bug report in http://sources.redhat.com/gd/bugs/ > Problem is that it doesn't find texinfo.tex cause, Makefile in insight puts a relative path ../texinfo as in > TEXIDIR=${gdbdir}/../texinfo > but as gdbdir resolve to . > > texi2dvi doesn't find texinfo.tex and make stands still in the tex call. Solution (patchy) is to replace by > TEXIDIR=/lib/texmf/tex/texinfo > thanks. That wouldn't be right. It should be picking up {gdb,insight}-5.2.1/texinfo/texinfo.tex and not the version from your installed directory. Andrew