diff options
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/ar.c | 14 |
2 files changed, 16 insertions, 3 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 1c4eab0..4297c2a 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +1999-09-12 Ian Lance Taylor <ian@zembu.com> + + * ar.c (main): Clear output_file if we don't change the archive. + (delete_members, replace_members): Likewise. + 1999-09-12 Donn Terry <donn@interix.com> * objdump.c (dump_headers): If wide_output, print Flags header. diff --git a/binutils/ar.c b/binutils/ar.c index 50d1edc7..bdc5103 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -647,17 +647,23 @@ main (argc, argv) case delete: if (files != NULL) delete_members (arch, files); + else + output_filename = NULL; break; case move: if (files != NULL) move_members (arch, files); + else + output_filename = NULL; break; case replace: case quick_append: if (files != NULL || write_armap > 0) replace_members (arch, files, operation == quick_append); + else + output_filename = NULL; break; /* Shouldn't happen! */ @@ -1179,9 +1185,9 @@ delete_members (arch, files_to_delete) } if (something_changed == true) - { - write_archive (arch); - } + write_archive (arch); + else + output_filename = NULL; } @@ -1332,6 +1338,8 @@ replace_members (arch, files_to_move, quick) if (changed) write_archive (arch); + else + output_filename = NULL; } static void |