From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 63707 invoked by alias); 15 Oct 2016 22:28:15 -0000 Mailing-List: contact kawa-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: kawa-owner@sourceware.org Received: (qmail 63688 invoked by uid 89); 15 Oct 2016 22:28:14 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=2.2 required=5.0 tests=AWL,BAYES_50,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,RCVD_IN_SORBS_SPAM,SPF_PASS,UNSUBSCRIBE_BODY autolearn=no version=3.3.2 spammy=build$, overseers, H*Ad:U*kawa, portions X-HELO: mail-ua0-f170.google.com Received: from mail-ua0-f170.google.com (HELO mail-ua0-f170.google.com) (209.85.217.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 15 Oct 2016 22:28:04 +0000 Received: by mail-ua0-f170.google.com with SMTP id r64so8381565uar.2 for ; Sat, 15 Oct 2016 15:28:04 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=UaKRmm96rCyCJab/OUfmuSSz364tNK2w1Cg0RRg9nrE=; b=fnrbIgW0Kei9AjizMiTjV41YW+ymH1TlqKElkDbdmDuLT9OFo0m3SpUstr0j7IbQal PdI2ahUj9BylEnfC+lUUCy3CsgonOnjKP/ac9D8zC6tMQUqJxFzofFx8fqRWtQEkxvd4 HGekwvkCLhjRkRzQHvkC5diUG1NNI4DBGQPCSpZoK8jVzRpO7xxgWknoF2IP6uw8Ckfy 2j1mnIRnrORVLyc+l3clG+evQf6S5k2S+NG+CRh4kX0gRHXA8y2vG4E0VyzUaIBtKGXk xK7mwY10woiZ4QS6T7aAJRofZk3NeVPwDJMKVNld5wKXI8e88DG6/vs8c5lOQmsRdXg8 aa8g== X-Gm-Message-State: AA6/9RmtlcxNw+q3igpnAhbFHkldHziybXgG/E1oLNE7eCRc4YiLsWqsyhd6LEhqMMWlHKJLPrXsODYDniKwKw== X-Received: by 10.176.85.24 with SMTP id t24mr2091395uaa.49.1476570482920; Sat, 15 Oct 2016 15:28:02 -0700 (PDT) MIME-Version: 1.0 Received: by 10.176.4.33 with HTTP; Sat, 15 Oct 2016 15:28:02 -0700 (PDT) In-Reply-To: <1b573d7a-c4eb-e51c-d394-c22e7372c977@bothner.com> References: <24167.1476564989@vereq.eip10.org> <9a1834cb-1794-da52-be4c-2ba8053689f6@bothner.com> <24c485d0-bf06-8efb-2b46-59213af4cb02@bothner.com> <1b573d7a-c4eb-e51c-d394-c22e7372c977@bothner.com> From: Andrea Bernardini Date: Sat, 15 Oct 2016 22:28:00 -0000 Message-ID: Subject: Re: kawa 2.2 last call To: kawa@sourceware.org Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2016-q4/txt/msg00016.txt.bz2 Super-odd, It seems that the file is replaced during compilation andrebask:build$ grep -n writeTo `find . -name "ByteVector.java"` 86: public void writeTo(OutputStream out) 88: writeTo(0, size(), out); 90: public void writeTo(int start, int count, OutputStream out) andrebask:build$ ./autogen.sh andrebask:build$ ./configure --prefix=/usr --with-java-source=8 checking whether to enable maintainer-specific portions of Makefiles... no [...] andrebask:build$ make [...] [Same error] andrebask:build$ grep -n writeTo `find . -name "ByteVector.java"` 86: public void writeTo(int start, int count, OutputStream out) On 15 October 2016 at 23:10, Per Bothner wrote: > > > On 10/15/2016 02:49 PM, Per Bothner wrote: >> >> Indeed, I get the same problem with a fresh check-out. >> >> But it depends on whether I'm doing: >> >> svn -q checkout svn+ssh://bothner@sourceware.org/svn/kawa/trunk kawa >> >> or: >> >> svn -q checkout svn://sourceware.org/svn/kawa/trunk kawa >> >> Maybe a problem with sourceware.org? Let me check into it ... > > > I'm mystified - it seems to have fixed itself: > > [bothner@toshie tmp]1263$ svn -q checkout > svn://sourceware.org/svn/kawa/trunk kawa > [bothner@toshie tmp]1264$ cd kawa > [bothner@toshie kawa]1265$ grep writeTo **/ByteVector.java > public void writeTo(OutputStream out) > writeTo(0, size(), out); > public void writeTo(int start, int count, OutputStream out) > > If the result from the above grep shows 3 lines, then we're good. > If it shows only a single line, then it's an old (bad) version. > > I'll mention the issue to the sourceware overseers; maybe they can guess > what happened. > > -- > --Per Bothner > per@bothner.com http://per.bothner.com/