aboutsummaryrefslogtreecommitdiff
path: root/ld/ldfile.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2012-07-13 13:20:27 +0000
committerNick Clifton <nickc@redhat.com>2012-07-13 13:20:27 +0000
commitcd6f1cf350bbc5d91977fccb8082cecea60d8465 (patch)
tree7b799c1b9f30992024c7b3dad4fc7a6e2b0633cb /ld/ldfile.c
parent61e44cfa2682596d7aba639712be9ff51cae2ef8 (diff)
downloadgdb-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/ldfile.c')
-rw-r--r--ld/ldfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/ldfile.c b/ld/ldfile.c
index 41ace36..e9091e9 100644
--- a/ld/ldfile.c
+++ b/ld/ldfile.c
@@ -126,7 +126,7 @@ ldfile_try_open_bfd (const char *attempt,
{
entry->the_bfd = bfd_openr (attempt, entry->target);
- if (trace_file_tries)
+ if (verbose)
{
if (entry->the_bfd == NULL)
info_msg (_("attempt to open %s failed\n"), attempt);
@@ -465,7 +465,7 @@ try_open (const char *name, bfd_boolean *sysrooted)
if (result != NULL)
*sysrooted = is_sysrooted_pathname (name);
- if (trace_file_tries)
+ if (verbose)
{
if (result == NULL)
info_msg (_("cannot find script file %s\n"), name);