diff options
author | Alexandre Duret-Lutz <adl@gnu.org> | 2004-05-23 16:19:43 +0000 |
---|---|---|
committer | Alexandre Duret-Lutz <adl@gnu.org> | 2004-05-23 16:19:43 +0000 |
commit | fbeb424c4acca8adc6b72a674b6e485bfb20abdc (patch) | |
tree | 6524101f42ee8d98daa4a9fab7a177c57f1874cc | |
parent | e41aadc0d3242d79527ca6136eef1e42e3c9aee5 (diff) | |
download | automake-fbeb424c4acca8adc6b72a674b6e485bfb20abdc.tar.gz automake-fbeb424c4acca8adc6b72a674b6e485bfb20abdc.tar.bz2 automake-fbeb424c4acca8adc6b72a674b6e485bfb20abdc.zip |
* m4/tar.m4 (_AM_PROG_TAR) <cpio>: Specify -o and -i option first,
by POSIX; and use option -d in am_untar.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | m4/tar.m4 | 6 |
2 files changed, 6 insertions, 3 deletions
@@ -1,5 +1,8 @@ 2004-05-23 Alexandre Duret-Lutz <adl@gnu.org> + * m4/tar.m4 (_AM_PROG_TAR) <cpio>: Specify -o and -i option first, + by POSIX; and use option -d in am_untar. + * tests/defs.in (PATH): Export it. * lib/am/multilib.am: Add $(MAKE) comments to multido and @@ -68,9 +68,9 @@ do am__untar='pax -r' ;; cpio) - am__tar='find "$$tardir" -print | cpio -H $1 -L -o' - am__tar_='find "$tardir" -print | cpio -H $1 -L -o' - am__untar='cpio -H $1 -i' + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' ;; none) am__tar=false |