From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2594 invoked by alias); 3 Jul 2006 03:47:19 -0000 Received: (qmail 2585 invoked by uid 22791); 3 Jul 2006 03:47:19 -0000 X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.45.12) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 03 Jul 2006 03:47:16 +0000 Received: from chris.corp.google.com (chris.corp.google.com [172.24.0.146]) by smtp-out.google.com with ESMTP id k633kwAQ027246; Sun, 2 Jul 2006 20:46:58 -0700 Received: from smtp.google.com (angband.corp.google.com [192.168.15.227]) by chris.corp.google.com with ESMTP id k633kn4B021033 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 2 Jul 2006 20:46:50 -0700 Received: from localhost.localdomain.google.com (adsl-71-133-8-30.dsl.pltn13.pacbell.net [71.133.8.30]) (authenticated bits=0) by smtp.google.com (8.13.7/8.13.6) with ESMTP id k633knmB008282 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 2 Jul 2006 20:46:49 -0700 To: "Bill McEnaney" Cc: gcc-help@gcc.gnu.org Subject: Re: Building gcc-4.1.1 References: <20060703010210.5B55471AC1@saratoga.rkirkpat.net> From: Ian Lance Taylor Date: Mon, 03 Jul 2006 03:47:00 -0000 In-Reply-To: <20060703010210.5B55471AC1@saratoga.rkirkpat.net> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2006-07/txt/msg00008.txt.bz2 "Bill McEnaney" writes: > You maybe remember that in another e-mail, I told you that my Sunblade > 100 workstation keeps makeinfo in /usr/local/bin, gmake still insists > that makeinfo is missing from my system. Here's the message I got when > I tried to rebuild gcc-4.1.1 earlier tonight. Does the message help? > > Thanks. > > Bill > > WARNING: `makeinfo' is missing on your system. You should only need it if > you modified a `.texi' or `.texinfo' file, or any other file > indirectly affecting the aspect of the manual. The spurious > call might also be the consequence of using a buggy `make' (AIX, > DU, IRIX). You might want to install the `Texinfo' package or > the `GNU make' package. Grab either from any GNU archive site. The top level configure script requires makeinfo to be at least a certain version. For 4.1.1, makeinfo needs to be version 4.2 or higher. Otherwise you will get the above message. So the first thing you should check is "makeinfo --version". Ian