From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 96550 invoked by alias); 20 Aug 2015 06:20:16 -0000 Mailing-List: contact java-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-patches-owner@gcc.gnu.org Received: (qmail 96526 invoked by uid 89); 20 Aug 2015 06:20:15 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.2 required=5.0 tests=AWL,BAYES_50,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS,URIBL_BLACK autolearn=no version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-oi0-f42.google.com Received: from mail-oi0-f42.google.com (HELO mail-oi0-f42.google.com) (209.85.218.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 20 Aug 2015 06:20:14 +0000 Received: by oiev193 with SMTP id v193so17098619oie.3; Wed, 19 Aug 2015 23:20:12 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.202.93.196 with SMTP id r187mr1247762oib.56.1440051612016; Wed, 19 Aug 2015 23:20:12 -0700 (PDT) Received: by 10.60.58.41 with HTTP; Wed, 19 Aug 2015 23:20:11 -0700 (PDT) In-Reply-To: <946415796.12688452.1440038906822.JavaMail.zimbra@redhat.com> References: <946415796.12688452.1440038906822.JavaMail.zimbra@redhat.com> Date: Thu, 20 Aug 2015 06:20:00 -0000 Message-ID: Subject: Re: [PATCH, libjava/classpath]: Fix overriding recipe for target 'gjdoc' build warning From: Uros Bizjak To: Andrew Hughes Cc: "gcc-patches@gcc.gnu.org" , java-patches@gcc.gnu.org, Andrew Haley , Tom Tromey Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-q3/txt/msg00021.txt.bz2 On Thu, Aug 20, 2015 at 4:48 AM, Andrew Hughes wrote: > ----- Original Message ----- >> On Fri, Aug 7, 2015 at 1:21 PM, Uros Bizjak wrote: >> >> > Attached patch fixes: >> > >> > Makefile:871: warning: overriding recipe for target 'gjdoc' >> > Makefile:786: warning: ignoring old recipe for target 'gjdoc' >> > >> > build warning when compiling libjava. >> > >> > The problem was in configure.ac: we have to depend gjdoc build on >> > CREATE_WRAPPERS in the same way as other tools are dependent a couple >> > of lines above. >> > >> > While in this area, I also removed obsolete automake < 1.11 >> > workaround. As mentioned in HACKING: "Make sure you have Automake >> > 1.11.1 installed. Exactly that version!" >> > >> > I have included all generated files in the diff. The changes are small >> > and they illustrate the effect of the patch. >> > >> > 2015-08-07 Uros Bizjak >> > >> > * configure.ac (tools/gjdoc): Depend on CREATE_WRAPPERS. >> > * configure: Regenerate. >> > * tools/Makefile.am: Remove unneeded dependencies for Automake 1.11. >> > * tools/Makefile.in: Regenerate. >> > >> > Patch was bootstrapped on x86_64-linux-gnu, Fedora 22. >> > >> > OK for GCC mainline? >> >> I have committed this patch to GCC mainline SVN repository. Both >> issues can be considered obvious and the fix is trivial. >> >> Also, it looks like the official classpath repository is a dead place >> for a couple of years. >> > > Hardly. > > http://git.savannah.gnu.org/cgit/classpath.git/log/ I was looking at http://www.gnu.org/software/classpath/ where the lik still points to the CVS server, with the latest ChangeLog entry from 2012-03-25. The repository you listed above can't be found on what looks like a classpath start page. > I've taken the liberty of applying your patch to keep GCJ in sync with its > upstream. Thanks! Uros.