···11+This patch fixes interaction with Libtool.
22+See <http://thread.gmane.org/gmane.comp.gcc.patches/258777>, for details.
33+44+--- a/gcc/fortran/gfortranspec.cc
55++++ b/gcc/fortran/gfortranspec.cc
66+@@ -461,8 +461,15 @@ For more information about these matters, see the file named COPYING\n\n"));
77+ {
88+ fprintf (stderr, _("Driving:"));
99+ for (i = 0; i < g77_newargc; i++)
1010++ {
1111++ if (g77_new_decoded_options[i].opt_index == OPT_l)
1212++ /* Make sure no white space is inserted after `-l'. */
1313++ fprintf (stderr, " -l%s",
1414++ g77_new_decoded_options[i].canonical_option[1]);
1515++ else
1616+ fprintf (stderr, " %s",
1717+ g77_new_decoded_options[i].orig_option_with_args_text);
1818++ }
1919+ fprintf (stderr, "\n");
2020+ }