Package: findutils
Version: 4.4.0-2
Severity: important
The current version of "find" in unstable will invoke the command
specified in "-execdir +" once for every file found -- as if it was
-execdir \;.
Should be:
find -execdir echo '{}' +
./abc ./def ./ghi
Is:
find -execdir echo '{}' +
./abc
./def
./ghi
The manpage documents the previous behaviour, and I found no mention
of this change being intentional. It does break quite a few
scripts, and for those which work, they suddenly work insanely slow.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]