From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3988 invoked by alias); 1 Jan 2011 01:13:37 -0000 Received: (qmail 3980 invoked by uid 22791); 1 Jan 2011 01:13:36 -0000 X-SWARE-Spam-Status: No, hits=-6.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,TW_XJ,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 01 Jan 2011 01:13:31 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id p011DTte011783 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 31 Dec 2010 20:13:30 -0500 Received: from host1.dyn.jankratochvil.net (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p011DRqZ012013 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 31 Dec 2010 20:13:29 -0500 Received: from host1.dyn.jankratochvil.net (localhost [127.0.0.1]) by host1.dyn.jankratochvil.net (8.14.4/8.14.4) with ESMTP id p011DP1n031027; Sat, 1 Jan 2011 02:13:25 +0100 Received: (from jkratoch@localhost) by host1.dyn.jankratochvil.net (8.14.4/8.14.4/Submit) id p011DP84030458; Sat, 1 Jan 2011 02:13:25 +0100 Date: Sat, 01 Jan 2011 01:13:00 -0000 From: Jan Kratochvil To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [patch] make info regression on --with-system-readline Message-ID: <20110101011319.GA27139@host1.dyn.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes 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 X-SW-Source: 2011-01/txt/msg00001.txt.bz2 Hi, since: [2/2] RFA: --with-system-readline -vs- gdb.texinfo http://sourceware.org/ml/gdb-patches/2010-11/msg00270.html $ rm -rf gdb-7.2.50.20101231; tar xjf gdb-7.2.50.20101231.tar.bz2; cd gdb-7.2.50.20101231; CFLAGS= ./configure --with-system-readline; make; rm gdb/doc/gdb.info; make -C gdb/doc gdb.info -> [...] makeinfo -I ./../mi -I . \ -o gdb.info ./gdb.texinfo ./gdb.texinfo:30521: @include `rluser.texi': No such file or directory. ./gdb.texinfo:30521: @include `inc-hist.texinfo': No such file or directory. [...] Fedora 14 x86_64 It is because GDBvn.texi has started to depend on the configure options. I will check it in in the case of no comments. Another issue is that GDBvn.texi and gdb-cfg.texi should not be distributed. But that bug is a different one on top of this bug. That bug of a needless files distribution is dependent on magic GDB `make dist' I do not know and also that dist bug is not serious enough. This is a regression. Thanks, Jan doc/ 2011-01-01 Jan Kratochvil * Makefile.in (GDBvn.texi): Add dependency on Makefile. --- a/gdb/doc/Makefile.in +++ b/gdb/doc/Makefile.in @@ -298,7 +298,7 @@ refcard.pdf : refcard.tex $(REFEDITS) rm -f sedref.log sedref.tex tmp.sed # File to record current GDB version number (copied from main dir version.in) -GDBvn.texi : ${gdbdir}/version.in +GDBvn.texi : ${gdbdir}/version.in Makefile echo "@set GDBVN `sed q $(srcdir)/../version.in`" > ./GDBvn.new if [ -n "$(PKGVERSION)" ]; then \ echo "@set VERSION_PACKAGE $(PKGVERSION)" >> ./GDBvn.new; \