--- Additional Comments From vincent dot riviere at freesbee dot fr
2007-05-19 14:02 ---
The problem is in the file bfd/Makefile.am, line 748.
libbfd_la_LIBADD = `cat ofiles` @WIN32LIBADD@
By default, cat opens the files in binary mode, which is not acceptable here
because of the probl
--- Additional Comments From schwab at suse dot de 2007-05-19 14:49 ---
None of the options are portable and supported by POSIX.
--
http://sourceware.org/bugzilla/show_bug.cgi?id=4334
--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watc
--- Additional Comments From vincent dot riviere at freesbee dot fr
2007-05-19 16:12 ---
More ideas :
4)
libbfd_la_LIBADD = `more ofiles` @WIN32LIBADD@
5)
libbfd_la_LIBADD = `expand ofiles` @WIN32LIBADD@
--
http://sourceware.org/bugzilla/show_bug.cgi?id=4334
--- You are recei