diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-04-13 14:54:18 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-04-13 14:54:18 +0000 |
commit | ebc9eebab03c298cf28bc8dd27fb3f02ac976056 (patch) | |
tree | 2e0abf709f844492aca3ddfeb9586303b1025c5a /binutils | |
parent | 194e99285852841f1e0856f2e6e6801dc009837d (diff) | |
download | gdb-ebc9eebab03c298cf28bc8dd27fb3f02ac976056.zip gdb-ebc9eebab03c298cf28bc8dd27fb3f02ac976056.tar.gz gdb-ebc9eebab03c298cf28bc8dd27fb3f02ac976056.tar.bz2 |
* objdump.c: Do an ifdef on __GO32__, not unix.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/objdump.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 3d2ffa8..5fff1c6 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 7943f80..d9e5c45 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. */ |