* objdump.c: Do an ifdef on __GO32__, not unix.
authorIan Lance Taylor <ian@airs.com>
Wed, 13 Apr 1994 14:54:18 +0000 (14:54 +0000)
committerIan Lance Taylor <ian@airs.com>
Wed, 13 Apr 1994 14:54:18 +0000 (14:54 +0000)
binutils/ChangeLog
binutils/objdump.c

index 3d2ffa81964858bbbddd12b8c2170701d5ed04d0..5fff1c64a38cf6e735601b5d4cffd8dc9c9f15c2 100644 (file)
@@ -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
index 7943f80148e393abaa54a1dcb2aded04dd14a65e..d9e5c4504ea32c927d650e63a78c34efa49da9cb 100644 (file)
@@ -1323,10 +1323,10 @@ dump_reloc_set (abfd, relpp, relcount)
 }
 \f
 /* 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.  */