bug#53340: [PATCH] python: use xargs -n when uninstalling files
- $(am__cd) "$$dir" && $(am__rm_f) $$files; }; \ + $(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \ Looks good to me, FWIW. -k
bug#53340: [PATCH] python: use xargs -n when uninstalling files
Fixes automake bug https://bugs.gnu.org/53340. If the system has xargs, then utilize it to uninstall files to stay within long command line limits. If the system doesn't have xargs, fall back to running the remove command one at a time. Since every reasonable system should have `xargs -n`, and P