From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22654 invoked by alias); 14 Mar 2008 17:13:13 -0000 Received: (qmail 22646 invoked by uid 22791); 14 Mar 2008 17:13:13 -0000 X-Spam-Check-By: sourceware.org Received: from mk-outboundfilter-1.mail.uk.tiscali.com (HELO mk-outboundfilter-1.mail.uk.tiscali.com) (212.74.114.37) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 14 Mar 2008 17:12:53 +0000 X-Trace: 63489294/mk-outboundfilter-1.mail.uk.tiscali.com/PIPEX/$ACCEPTED/pipex-customers/81.178.15.87 X-SBRS: None X-RemoteIP: 81.178.15.87 X-IP-MAIL-FROM: nick.hudson@dsl.pipex.com X-IP-BHB: Once X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgABADtP2kdRsg9X/2dsb2JhbAAIqV+CCw X-IP-Direction: IN Received: from 81-178-15-87.dsl.pipex.com (HELO [10.1.0.2]) ([81.178.15.87]) by smtp.pipex.tiscali.co.uk with ESMTP; 14 Mar 2008 17:12:33 +0000 From: Nick Hudson To: gdb-patches@sources.redhat.com Subject: [RFA] Fix build failure for powerpc Date: Fri, 14 Mar 2008 17:13:00 -0000 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_WHr2H0CYJrdTtZL" Message-Id: <200803141711.50526.nick.hudson@dsl.pipex.com> 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: 2008-03/txt/msg00180.txt.bz2 --Boundary-00=_WHr2H0CYJrdTtZL Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Content-length: 276 Here's a patch to fix a build problem for powerpc where libintl isn't found properly. OK? Can I commit it to the new 6.8 branch? Thanks, Nick ChangeLog * sim/ppc/configure.ac: Pass ../../intl to ZW_GNU_GETTEXT_SISTER_DIR. * sim/ppc/configure: Regenerate. --Boundary-00=_WHr2H0CYJrdTtZL Content-Type: text/plain; charset="us-ascii"; name="ChangeLog" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="ChangeLog" Content-length: 119 * sim/ppc/configure.ac: Pass ../../intl to ZW_GNU_GETTEXT_SISTER_DIR. * sim/ppc/configure: Regenerate. --Boundary-00=_WHr2H0CYJrdTtZL Content-Type: text/x-diff; charset="us-ascii"; name="sim-ppc.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="sim-ppc.diff" Content-length: 1232 Index: sim/ppc/configure =================================================================== RCS file: /cvs/src/src/sim/ppc/configure,v retrieving revision 1.15 diff -u -p -u -r1.15 configure --- sim/ppc/configure 13 Jun 2006 08:06:50 -0000 1.15 +++ sim/ppc/configure 14 Mar 2008 17:03:31 -0000 @@ -2388,8 +2388,8 @@ XGETTEXT= GMSGFMT= POSUB= -if test -f ../intl/config.intl; then - . ../intl/config.intl +if 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 Index: sim/ppc/configure.ac =================================================================== RCS file: /cvs/src/src/sim/ppc/configure.ac,v retrieving revision 1.6 diff -u -p -u -r1.6 configure.ac --- sim/ppc/configure.ac 31 May 2006 15:14:45 -0000 1.6 +++ sim/ppc/configure.ac 14 Mar 2008 17:03:33 -0000 @@ -17,7 +17,7 @@ CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-${CF dnl We don't use gettext, but bfd does. So we do the appropriate checks dnl to see if there are intl libraries we should link against. ALL_LINGUAS= -ZW_GNU_GETTEXT_SISTER_DIR +ZW_GNU_GETTEXT_SISTER_DIR(../../intl) AC_ARG_ENABLE(sim-alignment, --Boundary-00=_WHr2H0CYJrdTtZL--