mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
* ar.c (O_BINARY): Define as 0 if not defined.
(ranlib_touch): Open file with O_BINARY.
This commit is contained in:
parent
18226413df
commit
d84feeaca5
@ -1,5 +1,8 @@
|
||||
1999-06-12 Ian Lance Taylor <ian@zembu.com>
|
||||
|
||||
* ar.c (O_BINARY): Define as 0 if not defined.
|
||||
(ranlib_touch): Open file with O_BINARY.
|
||||
|
||||
* rename.c (O_BINARY): Define as 0 if not defined.
|
||||
(simple_copy): Open files with O_BINARY.
|
||||
|
||||
|
@ -40,6 +40,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||
#define EXT_NAME_LEN 6 /* ditto for *NIX */
|
||||
#endif
|
||||
|
||||
/* We need to open files in binary modes on system where that makes a
|
||||
difference. */
|
||||
#ifndef O_BINARY
|
||||
#define O_BINARY 0
|
||||
#endif
|
||||
|
||||
#define BUFSIZE 8192
|
||||
|
||||
/* Kludge declaration from BFD! This is ugly! FIXME! XXX */
|
||||
@ -1296,7 +1302,7 @@ ranlib_touch (archname)
|
||||
bfd *arch;
|
||||
char **matching;
|
||||
|
||||
f = open (archname, O_RDWR, 0);
|
||||
f = open (archname, O_RDWR | O_BINARY, 0);
|
||||
if (f < 0)
|
||||
{
|
||||
bfd_set_error (bfd_error_system_call);
|
||||
|
Loading…
Reference in New Issue
Block a user