From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11343 invoked by alias); 19 Apr 2009 19:00:41 -0000 Received: (qmail 11335 invoked by uid 22791); 19 Apr 2009 19:00:40 -0000 X-SWARE-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_66,SPF_SOFTFAIL X-Spam-Check-By: sourceware.org Received: from mtaout7.012.net.il (HELO mtaout7.012.net.il) (84.95.2.19) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 19 Apr 2009 19:00:35 +0000 Received: from conversion-daemon.i-mtaout7.012.net.il by i-mtaout7.012.net.il (HyperSendmail v2007.08) id <0KID008003F0E700@i-mtaout7.012.net.il> for gdb-patches@sourceware.org; Sun, 19 Apr 2009 22:00:09 +0300 (IDT) Received: from HOME-C4E4A596F7 ([84.228.219.161]) by i-mtaout7.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0KID005ZD3G2VMB0@i-mtaout7.012.net.il> for gdb-patches@sourceware.org; Sun, 19 Apr 2009 22:00:06 +0300 (IDT) Date: Sun, 19 Apr 2009 19:00:00 -0000 From: Eli Zaretskii Subject: NAT_FILE set incorrectly in gdb/Makefile To: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <838wlwii4o.fsf@gnu.org> 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: 2009-04/txt/msg00501.txt.bz2 "make TAGS" curses thusly: Making TAGS .././gdb/config/i386/config/i386/nm-linux64.h: No such file or directory This is on GNU/Linux, obviously, but I see the equivalent error message in the DJGPP build. The problem is this line from gdb/Makefile: NAT_FILE= config/i386/config/i386/nm-linux64.h which is obviously incorrect. It looks like the culprit is this line from configure.ac: sed -e '/^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' Makefile.tmp which seems to run twice, perhaps once by configure, the other time by config.status. But that's a guess; the truth is I have no idea why config/i386 gets prepended twice. Does anyone see the villain?