+2018-09-11 Nathan Sidwell <nathan@acm.org>
+
+ * gcc.c (load_specs, execute, run_attempt): Use %qs not '%s'.
+
2018-09-11 Uros Bizjak <ubizjak@gmail.com>
* reg-stack.c (subst_asm_stack_regs): Call replace_reg also
{
failed:
/* This leaves DESC open, but the OS will save us. */
- fatal_error (input_location, "cannot read spec file '%s': %m", filename);
+ fatal_error (input_location, "cannot read spec file %qs: %m", filename);
}
if (stat (filename, &statbuf) < 0)
{
errno = err;
fatal_error (input_location,
- err ? G_("cannot execute '%s' %s: %m")
- : G_("cannot execute '%s' %s"),
+ err ? G_("cannot execute %qs: %s: %m")
+ : G_("cannot execute %qs: %s"),
string, errmsg);
}
{
errno = err;
fatal_error (input_location,
- err ? G_ ("cannot execute '%s' %s: %m")
- : G_ ("cannot execute '%s' %s"),
+ err ? G_ ("cannot execute %qs: %s: %m")
+ : G_ ("cannot execute %qs: %s"),
new_argv[0], errmsg);
}