Hello,

dpkg-deb is basically doing something like:

    find . -path ./DEBIAN -prune -o -print0 | \
        tar -cf - -T - --null --no-recursion

I think that when --null is specified, tar should not warn.

Note: the warning is not displayed with the following command:

    find . -path ./DEBIAN -prune -o -print0 | \
        tar --null -cf - -T - --no-recursion


Do you think it could be possible to read all the arguments before calling
update_argv?
Or do you think dpkg-deb should specify --null before -T (is it OK for the
previous versions of tar)?

Kind Regards,
-- 
Nekral


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to