From: Antonio Diaz Diaz Date: Sat, 5 Dec 2009 13:45:30 +0000 (+0100) Subject: Replace unlzma, gunzip, bunzip2 with pack tool -d invocation. X-Git-Tag: v1.11.1~4^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fa396f2a7713e75eee69951dfdeaf70e42fe3dd;p=thirdparty%2Fautomake.git Replace unlzma, gunzip, bunzip2 with pack tool -d invocation. * lib/am/distdir.am (distcheck): Use lzma -d, gzip -d, bzip2 -d, instead of the respective un$tool invocation, to avoid depending on another tool. * THANKS: Update. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index feca8dbb7..ce2d912fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2009-12-05 Antonio Diaz Diaz + + Replace unlzma, gunzip, bunzip2 with pack tool -d invocation. + * lib/am/distdir.am (distcheck): Use lzma -d, gzip -d, bzip2 -d, + instead of the respective un$tool invocation, to avoid depending + on another tool. + * THANKS: Update. + 2009-12-05 Ralf Wildenhues Use $DJDIR rather than $DJGPP to detect running on DJGPP. diff --git a/Makefile.in b/Makefile.in index 1e626b1c4..53ebd79bf 100644 --- a/Makefile.in +++ b/Makefile.in @@ -620,17 +620,17 @@ dist dist-all: distdir distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ - bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ - unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ + lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac diff --git a/THANKS b/THANKS index 5789e95ea..d606ce2fd 100644 --- a/THANKS +++ b/THANKS @@ -24,6 +24,7 @@ Andrew Suffield asuffield@debian.org Andris Pavenis pavenis@lanet.lv Angus Leeming a.leeming@ic.ac.uk Anthony Green green@cygnus.com +Antonio Diaz Diaz ant_diaz@teleline.es Arkadiusz Miskiewicz misiek@pld.ORG.PL Art Haas ahaas@neosoft.com Arto C. Nirkko anirkko@insel.ch diff --git a/lib/am/distdir.am b/lib/am/distdir.am index dcaed5ef0..ec4d5e5cc 100644 --- a/lib/am/distdir.am +++ b/lib/am/distdir.am @@ -424,17 +424,17 @@ endif %?SUBDIRS% distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ - bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ - unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ + lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac