This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: Fix typo in gcc help text


I noticed this small problem in the gcc driver's help text. It has been like this since the --sysroot option was added last year.

Since we are in regression only fix mode I wasn't sure if it still qualified under the obvious rule.

OK, to commit?

2006-0717 David Daney <ddaney@avtrex.com>

* gcc.c (display_help): Fix typo in help text.

Index: gcc.c
===================================================================
--- gcc.c	(revision 115540)
+++ gcc.c	(working copy)
@@ -3192,7 +3192,7 @@
   fputs (_("  -std=<standard>          Assume that the input sources are for <standard>\n"), stdout);
   fputs (_("\
   --sysroot=<directory>    Use <directory> as the root directory for headers\n\
-                           for headers and libraries\n"), stdout);
+                           and libraries\n"), stdout);
   fputs (_("  -B <directory>           Add <directory> to the compiler's search paths\n"), stdout);
   fputs (_("  -b <machine>             Run gcc for target <machine>, if installed\n"), stdout);
   fputs (_("  -V <version>             Run gcc version number <version>, if installed\n"), stdout);

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]