]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gcc.c: In description for %{<S}, say the option removed is -S.
authorHans-Peter Nilsson <hp@axis.com>
Sat, 16 Sep 2000 13:29:43 +0000 (13:29 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Sat, 16 Sep 2000 13:29:43 +0000 (13:29 +0000)
* gcc.c: In description for %{<S}, say the option removed is -S.
* invoke.texi (Spec Files): Ditto.

From-SVN: r36456

gcc/ChangeLog
gcc/gcc.c
gcc/invoke.texi

index 660bb96b904f03c78fa1cdcd0ba00399959b41b0..a407372a5e8f22b414230b560920465f25344204 100644 (file)
@@ -1,3 +1,8 @@
+2000-09-16  Hans-Peter Nilsson  <hp@axis.com>
+
+       * gcc.c: In description for %{<S}, say the option removed is -S.
+       * invoke.texi (Spec Files): Ditto.
+
 2000-09-16  Andreas Jaeger  <aj@suse.de>
 
        * configure.in: Always define _GNU_SOURCE to make interfaces
index 66d70cf4156ebb706c91ec2d2f81bdf59b6a0bbb..bdd354b6669f83d102db431f660f0ae03495363a 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -374,9 +374,9 @@ or with constant text in a single argument.
        specified to CC.  Note that the tail part of the -S option
        (i.e. the part matched by the `*') will be substituted for each
        occurrence of %* within X.
- %{<S}  remove all occurences of S from the command line.
+ %{<S}  remove all occurences of -S from the command line.
         Note - this option is position dependent.  % commands in the
-        spec string before this option will see S, % commands in the
+        spec string before this option will see -S, % commands in the
         spec string after this option will not.
  %{S:X} substitutes X, but only if the -S switch was given to CC.
  %{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
index be42ad540ea2c6c08c18cf7a9c243b515d06585e..cea95c4e2671c1e69e6f0e8806dee1ba126fb8f8 100644 (file)
@@ -3708,9 +3708,9 @@ Like %@{@code{S}*@}, but don't put a blank between a switch and its
 argument.  Thus %@{^o*@} would only generate one argument, not two.
 
 @item %@{<@code{S}@}
-Remove all occurrences of @code{S} from the command line.  Note - this
+Remove all occurrences of @code{-S} from the command line.  Note - this
 command is position dependent.  @samp{%} commands in the spec string
-before this option will see @code{S}, @samp{%} commands in the spec
+before this option will see @code{-S}, @samp{%} commands in the spec
 string after this option will not.
 
 @item %@{@code{S}*:@code{X}@}