diff options
author | Nick Clifton <nickc@redhat.com> | 2001-08-12 07:59:28 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-08-12 07:59:28 +0000 |
commit | b9a8de1ea39d0e4fb34407388382f192f2304e80 (patch) | |
tree | d67bc37e72469440c1f145f88445709618c006f5 /ld/lexsup.c | |
parent | 6ca173e32ce4933fec50f130d36dd07e20391af5 (diff) | |
download | gdb-b9a8de1ea39d0e4fb34407388382f192f2304e80.zip gdb-b9a8de1ea39d0e4fb34407388382f192f2304e80.tar.gz gdb-b9a8de1ea39d0e4fb34407388382f192f2304e80.tar.bz2 |
Make --verbose always display linker script
Diffstat (limited to 'ld/lexsup.c')
-rw-r--r-- | ld/lexsup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/lexsup.c b/ld/lexsup.c index 91a1f1d..7e23a7d 100644 --- a/ld/lexsup.c +++ b/ld/lexsup.c @@ -1017,11 +1017,11 @@ the GNU General Public License. This program has absolutely no warranty.\n")); version information. Read it, but don't assume that we've seen a linker script. */ { - boolean hold_had_script; + FILE * hold_script_handle; - hold_had_script = had_script; + hold_script_handle = saved_script_handle; ldfile_open_command_file (optarg); - had_script = hold_had_script; + saved_script_handle = hold_script_handle; parser_input = input_version_script; yyparse (); } |