Commit 2e21df5a by Richard Kenner

(do_spec_1, case 'g'): Handle %O as suffix if MKTEMP_EACH_FILE.

From-SVN: r9892
parent 015892ee
......@@ -3308,7 +3308,8 @@ do_spec_1 (spec, inswitch, soft_matched_part)
In 2.4, do something about that. */
struct temp_name *t;
char *suffix = p;
while (*p == '.' || isalpha (*p))
while (*p == '.' || isalpha (*p)
|| (p[0] == '%' && p[1] == 'O'))
p++;
/* See if we already have an association of %g/%u/%U and
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment