# HG changeset patch # User jwe # Date 1177002382 0 # Node ID 44a4f68fbd76e94bfa87019a3d23814410eaf1ff # Parent 7cf7e248cb718db88f770e2949cfca02a1c513bf [project @ 2007-04-19 17:06:22 by jwe] diff -r 7cf7e248cb71 -r 44a4f68fbd76 scripts/ChangeLog --- a/scripts/ChangeLog Thu Apr 19 16:53:15 2007 +0000 +++ b/scripts/ChangeLog Thu Apr 19 17:06:22 2007 +0000 @@ -1,3 +1,8 @@ +2007-04-19 John W. Eaton + + * miscellaneous/unpack.m: Use gzip -d and bzip2 -d instead of + gunzip and bunzip. From Michael Goffioul . + 2007-04-19 A. S. Hodel * control/util/axis2dlim.m: Delete extraneous line. @@ -507,11 +512,11 @@ * testfun/test.m (test): Handle possibility of file_in_loadpath returning an empty cell array. -2007-02-27 From Michael Goffioul +2007-02-27 Michael Goffioul * pkg/pkg.m: Use fullfile to create filenames from parts. -2007-02-26 From Michael Goffioul +2007-02-26 Michael Goffioul * Makefile.in, audio/Makefile.in, control/Makefile.in, control/base/Makefile.in, control/hinf/Makefile.in, diff -r 7cf7e248cb71 -r 44a4f68fbd76 scripts/miscellaneous/unpack.m --- a/scripts/miscellaneous/unpack.m Thu Apr 19 16:53:15 2007 +0000 +++ b/scripts/miscellaneous/unpack.m Thu Apr 19 17:06:22 2007 +0000 @@ -114,23 +114,23 @@ ## bzip2 and gzip decompress the file at its location). persistent commandlist; if (isempty (commandlist)) - commandlist.gz = {"gunzip -v -r \"%s\"", ... - "gunzip -r \"%s\"", ... + commandlist.gz = {"gzip -d -v -r \"%s\"", ... + "gzip -d -r \"%s\"", ... @__parse_gzip__, true}; commandlist.z = commandlist.gz; - commandlist.bz2 = {"bunzip2 -v \"%s\"", ... - "bunzip2 \"%s\"", ... + commandlist.bz2 = {"bzip2 -d -v \"%s\"", ... + "bzip2 -d \"%s\"", ... @__parse_bzip2__, true}; commandlist.bz = commandlist.bz2; commandlist.tar = {"tar -x -v -f \"%s\"", ... "tar -x -f \"%s\"", ... @__parse_tar__, false}; - commandlist.targz = {"gunzip -c \"%s\" | tar -x -v", ... - "gunzip -c \"%s\" | tar -x", ... + commandlist.targz = {"gzip -d -c \"%s\" | tar -x -v", ... + "gzip -d -c \"%s\" | tar -x", ... @__parse_tar__, false}; commandlist.tgz = commandlist.targz; - commandlist.tarbz2 = {"bunzip2 -c \"%s\" | tar -x -v", ... - "bunzip2 -c \"%s\" | tar -x", ... + commandlist.tarbz2 = {"bzip2 -d -c \"%s\" | tar -x -v", ... + "bzip2 -d -c \"%s\" | tar -x", ... @__parse_tar__, false}; commandlist.tarbz = commandlist.tarbz2; commandlist.tbz2 = commandlist.tarbz2;