* Chris Lamb <la...@debian.org> [2023-02-06 18:40]:
> A patch is attached that removes all files (NB. not directories) that
> are installed directly under that location (which can never be right).
> This, therefore, is a more generic solution to #1030713.

> -     find .pybuild -name "out" -type f -delete
> +     find .pybuild -name "out" -type f
> +     find .pybuild/*/build -maxdepth 1 -type f -delete

The patch keeps the original find command, just w/o the -delete, so it
will now print a list of files named "out" instead of deleting them
(or doing anything else with them) before deleting all files in the
build subdirectories; was this intended?

- FC

Reply via email to