diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-12-06 00:07:06 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-12-06 00:07:06 +0000 |
commit | b7f95647fd61692f386a504b17a32326259d54cf (patch) | |
tree | f93957b0053cf4ed1ed0566bf7db2c29c3265b0a /ld/emultempl/linux.em | |
parent | cfac8028e44df8140ee4fa9a3d554b1df23e0c0c (diff) | |
download | gdb-b7f95647fd61692f386a504b17a32326259d54cf.zip gdb-b7f95647fd61692f386a504b17a32326259d54cf.tar.gz gdb-b7f95647fd61692f386a504b17a32326259d54cf.tar.bz2 |
Replace is_archive with maybe_archive.
2010-12-05 H.J. Lu <hongjiu.lu@intel.com>
* ldfile.c (ldfile_open_file_search): Check maybe_archive instead
of is_archive.
* emultempl/aix.em: Likewise.
* emultempl/elf32.em: Likewise.
* emultempl/linux.em: Likewise.
* emultempl/pe.em: Likewise.
* emultempl/pep.em: Likewise.
* emultempl/sunos.em: Likewise.
* emultempl/vms.em: Likewise.
* ldlang.c (new_afile): Set maybe_archive instead of is_archive..
* ldlang.h (lang_input_statement_struct): Replace is_archive
with maybe_archive.
Diffstat (limited to 'ld/emultempl/linux.em')
-rw-r--r-- | ld/emultempl/linux.em | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/emultempl/linux.em b/ld/emultempl/linux.em index 2a2a960..db62830 100644 --- a/ld/emultempl/linux.em +++ b/ld/emultempl/linux.em @@ -62,7 +62,7 @@ gld${EMULATION_NAME}_open_dynamic_archive { char *string; - if (! entry->is_archive) + if (! entry->maybe_archive) return FALSE; string = (char *) xmalloc (strlen (search->name) |