Emit a warning when an archive is created (only shown with -v) in order to

confrom to POSIX specification.
This commit is contained in:
Nick Clifton
2003-11-13 16:01:52 +00:00
parent b5727d755e
commit e99158355d
2 changed files with 7 additions and 0 deletions

View File

@ -750,6 +750,8 @@ open_inarch (const char *archive_filename, const char *file)
|| ! bfd_set_format (arch, bfd_archive)
|| ! bfd_close (arch))
bfd_fatal (archive_filename);
else if (!silent_create)
non_fatal (_("creating %s"), archive_filename);
/* If we die creating a new archive, don't leave it around. */
output_filename = archive_filename;