From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28525 invoked by alias); 14 Nov 2001 13:16:04 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 28487 invoked by uid 71); 14 Nov 2001 13:16:01 -0000 Date: Fri, 02 Nov 2001 12:16:00 -0000 Message-ID: <20011114131601.28484.qmail@sourceware.cygnus.com> To: tromey@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: 520036556988-0001@t-online.de (Georg Wild) Subject: Re: java/4804 Reply-To: 520036556988-0001@t-online.de (Georg Wild) X-SW-Source: 2001-11/txt/msg00067.txt.bz2 List-Id: The following reply was made to PR java/4804; it has been noted by GNATS. From: 520036556988-0001@t-online.de (Georg Wild) To: "Jeff Sturm" , , , , Cc: Subject: Re: java/4804 Date: Wed, 14 Nov 2001 14:07:40 +0100 I found the same explanation for this problem! First of all let me mention, that automake 1.5 doesn't work correctly because it doesn't find depcomp: .... cd . && automake --gnu --include-deps Makefile automake: configure.in: required file `./depcomp' not found make[1]: *** [Makefile.in] Error 1 ... So it seems always good to me linking /usr/local/share/automake/depcomp there! This time it works in the telled manor. As far as I see at the moment, the problem 4804 is produced by line 3965 of /ltmain.sh case $host in *cygwin*) exeext=.exe ;; *) exeext= ;; esac I think somehow this exeext= ;; doesn't work correctly; you should use exeext=``; to give exeext a value! At the moment I think this should solve the problem! On the way you should also solve the problem with depcomp, but therefor I don't know how to help you; maybe this warning may have something to do with that, maybe not: /windows/gcc/fastjar/missing: Unknown `--run' option Try `/windows/gcc/fastjar/missing --help' for more information configure: WARNING: `missing' script is too old or missing It occurs after upgrading automake, I think! Greetings Georg ------- Original Message ----- From: "Jeff Sturm" To: ; ; ; Sent: Wednesday, November 14, 2001 1:21 AM Subject: Re: java/4804 > I saw this too. In my case I have autoconf 2.50 installed. > jar/Makefile has > > EXEEXT = no > ... > bin_PROGRAMS = jar$(EXEEXT) > > Building with a prior release of autoconf worked fine. > > http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view >