From ebc9eebab03c298cf28bc8dd27fb3f02ac976056 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 13 Apr 1994 14:54:18 +0000 Subject: [PATCH] * objdump.c: Do an ifdef on __GO32__, not unix. --- binutils/ChangeLog | 4 ++++ binutils/objdump.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 3d2ffa81964..5fff1c64a38 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +Wed Apr 13 10:52:50 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + * objdump.c: Do an ifdef on __GO32__, not unix. + Wed Apr 6 21:54:49 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) Added -D (--dynamic) option to nm and -T (--dynamic-syms) and -R diff --git a/binutils/objdump.c b/binutils/objdump.c index 7943f80148e..d9e5c4504ea 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -1323,10 +1323,10 @@ dump_reloc_set (abfd, relpp, relcount) } /* A file to open each BFD on. It will never actually be written to. */ -#ifdef unix -#define _DUMMY_NAME_ "/dev/null" -#else +#ifdef __GO32__ #define _DUMMY_NAME_ "##dummy" +#else +#define _DUMMY_NAME_ "/dev/null" #endif /* The length of the longest architecture name + 1. */ -- 2.30.2