Re: gcc fix libgfortran.la

2017-11-12 Thread Pascal Stumpf
On Sun, 12 Nov 2017 19:22:18 +0100, Steven Mestdagh wrote: > Steven Mestdagh [2017-11-10, 20:56:51]: > > Marc Espie [2017-11-09, 00:40:28]: > > > Can you have a look at a not so quick fix ? I mean such a bogus thing > > > is generated from somewhere in the port. > > > > > > > comparing to what th

Re: gcc fix libgfortran.la

2017-11-12 Thread Steven Mestdagh
Steven Mestdagh [2017-11-10, 20:56:51]: > Marc Espie [2017-11-09, 00:40:28]: > > Can you have a look at a not so quick fix ? I mean such a bogus thing > > is generated from somewhere in the port. > > > > comparing to what the more recent gnu libtool port is doing, i suggest the > fix below. this

Re: gcc fix libgfortran.la

2017-11-10 Thread Steven Mestdagh
Marc Espie [2017-11-09, 00:40:28]: > On Wed, Nov 08, 2017 at 07:38:37PM +0100, Steven Mestdagh wrote: > > hi, > > > > As I mentioned previously, there is a quoting issue in libgfortran.la: > > dependency_libs=' '/usr/local/lib'/libquadmath.la -lm' > > should be: > > dependency_libs='/usr/local/lib

Re: gcc fix libgfortran.la

2017-11-08 Thread Marc Espie
On Wed, Nov 08, 2017 at 07:38:37PM +0100, Steven Mestdagh wrote: > hi, > > As I mentioned previously, there is a quoting issue in libgfortran.la: > dependency_libs=' '/usr/local/lib'/libquadmath.la -lm' > should be: > dependency_libs='/usr/local/lib/libquadmath.la -lm' > > We would need this to b

gcc fix libgfortran.la

2017-11-08 Thread Steven Mestdagh
hi, As I mentioned previously, there is a quoting issue in libgfortran.la: dependency_libs=' '/usr/local/lib'/libquadmath.la -lm' should be: dependency_libs='/usr/local/lib/libquadmath.la -lm' We would need this to be correct to link with libgfortran via libtool. This diff is a quick fix for libg