diff options
author | Nick Clifton <nickc@redhat.com> | 2012-07-13 13:20:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2012-07-13 13:20:27 +0000 |
commit | cd6f1cf350bbc5d91977fccb8082cecea60d8465 (patch) | |
tree | 7b799c1b9f30992024c7b3dad4fc7a6e2b0633cb /ld/pe-dll.c | |
parent | 61e44cfa2682596d7aba639712be9ff51cae2ef8 (diff) | |
download | gdb-cd6f1cf350bbc5d91977fccb8082cecea60d8465.zip gdb-cd6f1cf350bbc5d91977fccb8082cecea60d8465.tar.gz gdb-cd6f1cf350bbc5d91977fccb8082cecea60d8465.tar.bz2 |
PR ld/14357
* ldmain.c (trace_file_tries): Rename to 'verbose'.
* ldfile.c: Likewise.
* ldlang.c: Likewise.
* ldmain.h: Likewise.
* lexsup.c: Likewise.
* emultempl/elf32.em: Likewise.
* emultemp/spuelf.em: Likewise.
* pe-dll.c (pe_dll_generate_implib): Only print creation message
in verbose mode.
Diffstat (limited to 'ld/pe-dll.c')
-rw-r--r-- | ld/pe-dll.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ld/pe-dll.c b/ld/pe-dll.c index 84ff029..31beac8 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -2713,8 +2713,9 @@ pe_dll_generate_implib (def_file *def, const char *impfilename, struct bfd_link_ return; } - /* xgettext:c-format */ - info_msg (_("Creating library file: %s\n"), impfilename); + if (verbose) + /* xgettext:c-format */ + info_msg (_("Creating library file: %s\n"), impfilename); bfd_set_format (outarch, bfd_archive); outarch->has_armap = 1; |