Thanks for writing that. Some minor points: Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes:
> [EMAIL PROTECTED] selects the new pax format defined by POSIX > +1003.1-2001. It supports filenames with up to 65535 characters. Hmm, where did that "65535" come from? I don't know of any limit of 65535 bytes (presumably you meant bytes, not characters) that is required by POSIX. Also, there are moves to change the pax format (so far in an upward-compatible way, but you never know....). Perhaps you should mention that "tar-pax" is intended to be the most recent version of the pax interchange format, not necessarily the 2001 version. (This problem probably afflicts the GNU tar documentation as well....) > +# Substitute a variable $(am__untar) that exctract such exctract -> extract > + cpio) > + am__tar='find "$$tardir" -print | cpio -H $1 -L -o' > + am__tar_='find "$tardir" -print | cpio -H $1 -L -o' > + am__untar='cpio -i' Wouldn't it be safer to use 'cpio -H tar -i' rather than 'cpio -i'? The latter autodetects, but I worry that autodetection isn't infallible. (I don't know about cpio to be sure here.)