From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24904 invoked by alias); 18 Sep 2009 10:17:52 -0000 Received: (qmail 24896 invoked by uid 22791); 18 Sep 2009 10:17:51 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_33 X-Spam-Check-By: sourceware.org Received: from mout7.freenet.de (HELO mout7.freenet.de) (195.4.92.97) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 18 Sep 2009 10:17:46 +0000 Received: from [195.4.92.27] (helo=17.mx.freenet.de) by mout7.freenet.de with esmtpa (ID ralf.corsepius@freenet.de) (port 25) (Exim 4.69 #92) id 1MoaX9-00065m-DF for gdb-patches@sourceware.org; Fri, 18 Sep 2009 12:17:43 +0200 Received: from hsi-kbw-078-043-127-065.hsi4.kabel-badenwuerttemberg.de ([78.43.127.65]:60553 helo=[192.168.1.104]) by 17.mx.freenet.de with esmtpsa (ID ralf.corsepius@freenet.de) (SSLv3:AES256-SHA:256) (port 465) (Exim 4.69 #94) id 1MoaX9-0007Bu-9q for gdb-patches@sourceware.org; Fri, 18 Sep 2009 12:17:43 +0200 Subject: Make-common.in seems to ignore --datarootdir From: Ralf Corsepius To: "gdb-patches@sourceware.org" Content-Type: multipart/mixed; boundary="=-Xsqx8wuQAsw+2STmD23R" Date: Fri, 18 Sep 2009 10:17:00 -0000 Message-Id: <1253269062.7211.2.camel@beck.corsepiu.local> Mime-Version: 1.0 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-09/txt/msg00585.txt.bz2 --=-Xsqx8wuQAsw+2STmD23R Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 396 Hi, When building gdb-6.8.91 with a simulator enabled, gdb's configuration issues a warning similar to this: ... config.status: creating Make-common.sim config.status: WARNING: '../../../gdb-6.8.91/sim/m32c/../common/Make-common.in' seems to ignore the --datarootdir setting ... A fix to this is to add datarootdir = @datarootdir@ to sim/common/Make-common.in Patch enclosed below. Ralf --=-Xsqx8wuQAsw+2STmD23R Content-Disposition: attachment; filename="gdb-6.8.91-sim-common-Make-common.in.diff" Content-Type: text/x-patch; name="gdb-6.8.91-sim-common-Make-common.in.diff"; charset="UTF-8" Content-Transfer-Encoding: 7bit Content-length: 551 2009-09-18 Ralf Corsepius * Make-common.in: Add datarootdir. diff -Naur gdb-6.8.91.orig/sim/common/Make-common.in gdb-6.8.91-rtems4.10-20090918/sim/common/Make-common.in --- gdb-6.8.91.orig/sim/common/Make-common.in 2009-07-12 18:59:34.000000000 +0200 +++ gdb-6.8.91-rtems4.10-20090918/sim/common/Make-common.in 2009-09-18 11:36:22.000000000 +0200 @@ -52,6 +52,7 @@ tooldir = $(libdir)/$(target_alias) datadir = @datadir@ +datarootdir = @datarootdir@ mandir = @mandir@ man1dir = $(mandir)/man1 infodir = @infodir@ --=-Xsqx8wuQAsw+2STmD23R--