]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Restore old behaviour of windres so that options containing spaces are not enclosed...
authorThomas Wolff <towo@towo.net>
Mon, 10 May 2021 10:28:15 +0000 (11:28 +0100)
committerNick Clifton <nickc@redhat.com>
Mon, 10 May 2021 10:28:15 +0000 (11:28 +0100)
PR 4356
PR 26865
PR 27594
* windres.c (quot): Revert previous delta.  Do not use double
quotes when spaces are detected in options.
* doc/binutils.texi (windres): Remove suggestion that the
--preprocessor option can take arguments.

binutils/ChangeLog
binutils/doc/binutils.texi
binutils/windres.c

index ae27252e982fcb48d176715d93462cb4760cc338..38ae189daba01f48eeea378301f0e9b6f6afa457 100644 (file)
@@ -1,3 +1,13 @@
+2021-05-10  Thomas Wolff  <towo@towo.net>
+
+       PR 4356
+       PR 26865
+       PR 27594
+       * windres.c (quot): Revert previous delta.  Do not use double
+       quotes when spaces are detected in options.
+       * doc/binutils.texi (windres): Remove suggestion that the
+       --preprocessor option can take arguments.
+
 2021-05-10  Alan Modra  <amodra@gmail.com>
 
        * dwarf.c (SAFE_BYTE_GET): Check bounds by subtracting amount from
index 9578c083ef81dbc7d5e178bd7f938194f36c3550..504c3eae177f7c024bf9d98886d34fbbb4dba0df 100644 (file)
@@ -4278,8 +4278,7 @@ format, which is the first one listed by the @option{--help} option.
 @item --preprocessor @var{program}
 When @command{windres} reads an @code{rc} file, it runs it through the C
 preprocessor first.  This option may be used to specify the preprocessor
-to use, including any leading arguments.  The default preprocessor
-argument is @code{gcc}.
+to use.  The default preprocessor is @code{gcc}.
 
 @item --preprocessor-arg @var{option}
 When @command{windres} reads an @code{rc} file, it runs it through
@@ -4290,8 +4289,8 @@ preprocessor command line.
 If the @option{--preprocessor} option has not been specified then a
 default set of preprocessor arguments will be used, with any
 @option{--preprocessor-arg} options being placed after them on the
-command line.  These default arguments are @code{-E -xc-header
--DRC_INVOKED}.
+command line.  These default arguments are @code{-E},
+@code{-xc-header} and @code{-DRC_INVOKED}.
 
 @item -I @var{directory}
 @itemx --include-dir @var{directory}
index 544cef6eb346b3960bef5b6226475233e518612a..2b626a29fb68ada1cc012a267a60d72c1335bea9 100644 (file)
@@ -710,37 +710,13 @@ quot (const char *string)
       buf = (char *) xmalloc (buflen);
     }
 
-#if defined (_WIN32) && !defined (__CYGWIN__)
-  /* For Windows shells, quote "like this".   */
-  {
-    bool quoted = false;
-
-    dest = buf;
-    if (strchr (string, ' '))
-      {
-       quoted = true;
-       *dest++ = '"';
-      }
-
-    for (src = string; *src; src++, dest++)
-      {
-       /* Escape-protect embedded double quotes.  */
-       if (quoted && *src == '"')
-         *dest++ = '\\';
-       *dest = *src;
-      }
-
-    if (quoted)
-      *dest++ = '"';
-  }
-#else
   for (src = string, dest = buf; *src; src++, dest++)
     {
       if (*src == '(' || *src == ')' || *src == ' ')
        *dest++ = '\\';
       *dest = *src;
     }
-#endif
+
   *dest = 0;
   return buf;
 }