From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22210 invoked by alias); 12 Jun 2006 12:59:38 -0000 Received: (qmail 21981 invoked by uid 22791); 12 Jun 2006 12:59:27 -0000 X-Spam-Check-By: sourceware.org Received: from nevyn.them.org (HELO nevyn.them.org) (66.93.172.17) by sourceware.org (qpsmtpd/0.31.1) with ESMTP; Mon, 12 Jun 2006 12:58:30 +0000 Received: from drow by nevyn.them.org with local (Exim 4.54) id 1Fplzv-0007W4-Fx; Mon, 12 Jun 2006 08:58:27 -0400 Date: Mon, 12 Jun 2006 12:59:00 -0000 From: Daniel Jacobowitz To: Masaki Muranaka Cc: gdb-patches@sourceware.org Subject: Re: Failed to detect config.intl at sim/*/configure Message-ID: <20060612125826.GA28836@nevyn.them.org> Mail-Followup-To: Masaki Muranaka , gdb-patches@sourceware.org References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11+cvs20060403 X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-06/txt/msg00151.txt.bz2 On Mon, Jun 12, 2006 at 02:07:36PM +0900, Masaki Muranaka wrote: > This can't use with sim because it was linked at not sim/ > but sim/*/ . > I've tried to fix it, but I can't see how to get > the top level build directory. > > Would anyone fix it? I couldn't see how either - we want $ac_top_builddir but the only way to set it is undocumented. But, we can just keep trying. Want to try this patch? Index: config/gettext-sister.m4 =================================================================== RCS file: /cvs/src/src/config/gettext-sister.m4,v retrieving revision 1.2 diff -u -p -r1.2 gettext-sister.m4 --- config/gettext-sister.m4 31 May 2006 15:14:35 -0000 1.2 +++ config/gettext-sister.m4 12 Jun 2006 12:58:14 -0000 @@ -21,6 +21,8 @@ GMSGFMT= AC_SUBST(GMSGFMT) POSUB= AC_SUBST(POSUB) if test -f ../intl/config.intl; then . ../intl/config.intl +elif test -f ../../intl/config.intl; then + . ../../intl/config.intl fi AC_MSG_CHECKING([whether NLS is requested]) if test x"$USE_NLS" != xyes; then Index: sim/mips/configure =================================================================== RCS file: /cvs/src/src/sim/mips/configure,v retrieving revision 1.24 diff -u -p -r1.24 configure --- sim/mips/configure 5 Jun 2006 14:21:13 -0000 1.24 +++ sim/mips/configure 12 Jun 2006 12:58:16 -0000 @@ -2705,6 +2705,8 @@ GMSGFMT= POSUB= if test -f ../intl/config.intl; then . ../intl/config.intl +elif test -f ../../intl/config.intl; then + . ../../intl/config.intl fi echo "$as_me:$LINENO: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6 -- Daniel Jacobowitz CodeSourcery