Report that directory DIR was made, if OPTIONS requests this. */
| 352 | |
| 353 | /* Report that directory DIR was made, if OPTIONS requests this. */ |
| 354 | static void |
| 355 | announce_mkdir (char const *dir, void *options) |
| 356 | { |
| 357 | struct cp_options const *x = options; |
| 358 | if (x->verbose) |
| 359 | prog_fprintf (stdout, _("creating directory %s"), quoteaf (dir)); |
| 360 | } |
| 361 | |
| 362 | /* Make ancestor directory DIR, whose last file name component is |
| 363 | COMPONENT, with options OPTIONS. Assume the working directory is |
no test coverage detected