This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: java/4804
- From: 520036556988-0001 at t-online dot de (Georg Wild)
- To: "Jeff Sturm" <jsturm at one-point dot com>,<gcc-gnats at gcc dot gnu dot org>,<tromey at gcc dot gnu dot org>,<georg dot wild at gmx dot de>,<gcc-bugs at gcc dot gnu dot org>
- Date: Wed, 14 Nov 2001 14:07:40 +0100
- Subject: Re: java/4804
- Disposition-notification-to: "Georg Wild" <georg.wild@gmx.net>
- References: <3BF1B902.71EC5CE2@one-point.com>
[Get raw message]
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" <jsturm@one-point.com>
To: <gcc-gnats@gcc.gnu.org>; <tromey@gcc.gnu.org>; <georg.wild@gmx.de>;
<gcc-bugs@gcc.gnu.org>
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
>