From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22144 invoked by alias); 27 Mar 2015 19:05:25 -0000 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 Received: (qmail 22087 invoked by uid 89); 27 Mar 2015 19:05:24 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 27 Mar 2015 19:05:23 +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.14.4/8.14.4) with ESMTP id t2RJ5HJW030477 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Fri, 27 Mar 2015 15:05:18 -0400 Received: from [127.0.0.1] (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t2RJ5G2A009013; Fri, 27 Mar 2015 15:05:17 -0400 Message-ID: <5515A9EC.2050602@redhat.com> Date: Fri, 27 Mar 2015 19:05:00 -0000 From: Pedro Alves User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Antoine Tremblay , gdb-patches@sourceware.org Subject: Re: [PATCH 2/2] Fix source file not found when part of the path does not exist but that a canonicalized path exists. References: <1422994793-9861-1-git-send-email-antoine.tremblay@ericsson.com> <1422994793-9861-2-git-send-email-antoine.tremblay@ericsson.com> <54D12F84.3090004@ericsson.com> <55154BEB.9050104@redhat.com> <5515A5EE.7070102@ericsson.com> <5515A6F0.2090606@ericsson.com> In-Reply-To: <5515A6F0.2090606@ericsson.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-SW-Source: 2015-03/txt/msg00919.txt.bz2 On 03/27/2015 06:52 PM, Antoine Tremblay wrote: > I forgot to mention if you have a recent debian or ubuntu with perl > > 5.6 you will have problems running update-gnulib.sh you need to patch > your automake 1.11.1 with the patch at : > https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=aclocal-function-prototypes.debdiff;att=1;bug=752784 > > Actually this patch contains a quilt patchset you need to apply the > patch inside this patchset... > in the users/palves/gnulib-update branch I just worked around it in the update-gnulib.sh script itself: commit e24f90b0469990f97d0f4ff433bdb8c5567736fe Author: Pedro Alves AuthorDate: Mon Mar 23 11:56:05 2015 +0000 Commit: Pedro Alves CommitDate: Mon Mar 23 11:56:05 2015 +0000 Set up to update gnulib d164bf67cc2d471facdd5d3b09f80f3688b3a21b diff --git a/gdb/gnulib/update-gnulib.sh b/gdb/gnulib/update-gnulib.sh old mode 100644 new mode 100755 index 5c7238f..91acea4 --- a/gdb/gnulib/update-gnulib.sh +++ b/gdb/gnulib/update-gnulib.sh @@ -53,7 +53,7 @@ IMPORTED_GNULIB_MODULES="\ " # The gnulib commit ID to use for the update. -GNULIB_COMMIT_SHA1="8d5bd1402003bd0153984b138735adf537d960b0" +GNULIB_COMMIT_SHA1="d164bf67cc2d471facdd5d3b09f80f3688b3a21b" # The expected version number for the various auto tools we will # use after the import. @@ -110,7 +110,7 @@ if [ "$ver" != "$AUTOMAKE_VERSION" ]; then fi # Verify that we have the correct version of aclocal. -ver=`aclocal --version 2>&1 | head -1 | sed 's/.*) //'` +ver=`aclocal --version 2>&1 | grep -v "called too early to check prototype" | head -1 | sed 's/.*) //'` if [ "$ver" != "$ACLOCAL_VERSION" ]; then echo "Error: Wrong aclocal version: $ver. Aborting." exit 1