From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21943 invoked by alias); 13 May 2002 22:46:02 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 21929 invoked by uid 71); 13 May 2002 22:46:02 -0000 Date: Mon, 13 May 2002 15:46:00 -0000 Message-ID: <20020513224602.21928.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: "Joseph S. Myers" Subject: Re: other/6653: make dvi fails on solaris, gcc-3.0.4 Reply-To: "Joseph S. Myers" X-SW-Source: 2002-05/txt/msg00371.txt.bz2 List-Id: The following reply was made to PR other/6653; it has been noted by GNATS. From: "Joseph S. Myers" To: Cc: , Subject: Re: other/6653: make dvi fails on solaris, gcc-3.0.4 Date: Mon, 13 May 2002 23:44:51 +0100 (BST) On 13 May 2002 jeff.deifik@jpl.nasa.gov wrote: > texi2dvi -I ../../gcc-3.0.4/gcc/doc -I ../../gcc-3.0.4/gcc/doc/include ../../gc\ > c-3.0.4/gcc/doc/gcc.texi^M > /home/jdeifik/work/gnu/gcc-3.0.4/gcc/doc/invoke.texi:159: Unknown command `gol'\ > .^M > /home/jdeifik/work/gnu/gcc-3.0.4/gcc/doc/invoke.texi:165: Unknown command `gol'\ > .^M > /home/jdeifik/work/gnu/gcc-3.0.4/gcc/doc/invoke.texi:166: Unknown command `gol'\ > .^M > /home/jdeifik/work/gnu/gcc-3.0.4/gcc/doc/invoke.texi:167 ... > > This goes on for many lines, as the '@gol' is used many > times in invoke.texi. > This is with "This is TeX, Version 3.14159 (Web2C 7.2)" If this is a complete log, that indicates that texi2dvi is trying to use makeinfo to expand macros, rather than TeX - you need to investigate why. @gol is defined in different ways for TeX and info because of differences between how the two implementations of macro expansion work; texi2dvi -e is unlikely to work. The texinfo.tex included with GCC is sufficiently recent that texi2dvi should detect that it supports macro expansion. -- Joseph S. Myers jsm28@cam.ac.uk