From patchwork Thu Aug 29 19:07:11 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Stump X-Patchwork-Id: 270894 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "www.sourceware.org", Issuer "StartCom Class 1 Primary Intermediate Server CA" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 230B62C0090 for ; Fri, 30 Aug 2013 05:07:21 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :content-type:content-transfer-encoding:subject:message-id:date :to:mime-version; q=dns; s=default; b=Ap6B7rL5TqYgzY22jfHonW7nHQ rZcYn0cCdWfFG5MUEI/ab00tbnXHZ9D1M5N5VhiavgnBtxKkKmqMrkU3igK+5elW bD9SZKrv3SxJAAX4AQTG1tjP+X8x9Kd3ZO22ndXraqYJQzAi33CpexMw5LSpgsmo dVFFNID2swvIC8fgQ= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :content-type:content-transfer-encoding:subject:message-id:date :to:mime-version; s=default; bh=uoQlA0MRhpq3hCJWPohgpraD438=; b= dMdSrRBsaYBJxBPfzhKJ3FGUqY7Jy2oDjYeE7kJkd6uADZx7EqDQPEXFk8cJyzKR HTDe/2cwsNLMFBishC3d22t+O5Jsh3IgzlJ5M38oLAkGaTyj2AEHqdJa/fPcGqy4 utScXbszUbc07MxyghdnxgfRkmKzGWlsFYqYTCOWcMU= Received: (qmail 13642 invoked by alias); 29 Aug 2013 19:07:14 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 13630 invoked by uid 89); 29 Aug 2013 19:07:14 -0000 Received: from qmta15.emeryville.ca.mail.comcast.net (HELO qmta15.emeryville.ca.mail.comcast.net) (76.96.27.228) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 29 Aug 2013 19:07:14 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, RCVD_IN_HOSTKARMA_NO, RDNS_NONE, SPF_PASS autolearn=no version=3.3.2 X-HELO: qmta15.emeryville.ca.mail.comcast.net Received: from omta19.emeryville.ca.mail.comcast.net ([76.96.30.76]) by qmta15.emeryville.ca.mail.comcast.net with comcast id JgvJ1m0021eYJf8AFj7BbZ; Thu, 29 Aug 2013 19:07:11 +0000 Received: from up.mrs.kithrup.com ([24.4.193.8]) by omta19.emeryville.ca.mail.comcast.net with comcast id Jj7B1m00E0BKwT401j7BU9; Thu, 29 Aug 2013 19:07:11 +0000 From: Mike Stump Subject: gcc_update fix build error Message-Id: <2FAA5500-BF47-47DC-B4B3-D894C96A2DF6@comcast.net> Date: Thu, 29 Aug 2013 12:07:11 -0700 To: gcc-patches Patches Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\)) This fixes a build error in trunk. Before: # cat gcc/REVISION [trunk trunk revision 202083] and after: $ cat gcc/REVISION [trunk revision 202083] $ svn info Path: . Working Copy Root Path: /Users/mrs/net/gcc URL: svn+ssh://mrs@gcc.gnu.org/svn/gcc/trunk Relative URL: ^/trunk Repository Root: svn+ssh://mrs@gcc.gnu.org/svn/gcc Repository UUID: 138bc75d-0d04-0410-961f-82ee72b054a4 Revision: 202083 Node Kind: directory Schedule: normal Last Changed Author: timshen Last Changed Rev: 202082 Last Changed Date: 2013-08-29 11:33:07 -0700 (Thu, 29 Aug 2013) The Relative URL was messing it up. This is with svn: $ svn --version svn, version 1.8.1 (r1503906) which required an upgrade on the old repository. I checked this in. 2013-08-29 Mike Stump * gcc_update (configure): Update to handle svn 1.8.1. Index: contrib/gcc_update =================================================================== --- contrib/gcc_update (revision 202083) +++ contrib/gcc_update (working copy) @@ -385,7 +385,7 @@ case $vcs_type in fi revision=`$GCC_SVN info | awk '/Revision:/ { print $2 }'` - branch=`$GCC_SVN info | sed -ne "/URL:/ { + branch=`$GCC_SVN info | sed -ne "/^URL:/ { s,.*/trunk,trunk, s,.*/branches/,, s,.*/tags/,,