X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gzexe.in;h=282e3854afa3e542c7d5b4aa9e40fabb692fcb51;hb=bb237929fec6af7764d532c4e5348c9990f8e87e;hp=0acd3bbb4deb8bfb3e3fae4265ecd26bb24ac420;hpb=800deb09b422a73c1212233a93839a223ff59678;p=debian%2Fgzip diff --git a/gzexe.in b/gzexe.in index 0acd3bb..282e385 100644 --- a/gzexe.in +++ b/gzexe.in @@ -13,12 +13,13 @@ # On Ultrix, /bin/sh is too buggy, change the first line to: #!/bin/sh5 -# Copyright (C) 1998, 2002, 2004, 2006, 2007 Free Software Foundation +# Copyright (C) 1998, 2002, 2004, 2006-2007, 2010-2016 Free Software +# Foundation, Inc. # Copyright (C) 1993 Jean-loup Gailly # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or +# the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, @@ -36,7 +37,7 @@ nl=' IFS=" $tab$nl" version='gzexe (gzip) @VERSION@ -Copyright (C) 2007 Free Software Foundation, Inc. +Copyright (C) 2007, 2011-2016 Free Software Foundation, Inc. This is free software. You may redistribute copies of it under the terms of the GNU General Public License . There is NO WARRANTY, to the extent permitted by law. @@ -52,9 +53,6 @@ Rename each FILE with a compressed version of itself, renaming FILE to FILE~. Report bugs to ." - -PATH="BINDIR:$PATH" - decomp=0 res=0 while :; do @@ -121,7 +119,7 @@ for i do mktemp_status=$? fi if test $mktemp_status -eq 0; then - tmp=`TMPDIR=$dir mktemp -t gzexeXXXXXX` + tmp=`TMPDIR=$dir mktemp` else tmp=$dir/gzexe$$ fi && { cp -p "$file" "$tmp" 2>/dev/null || cp "$file" "$tmp"; } || { @@ -159,7 +157,7 @@ trap 'res=$? ' 0 1 2 3 5 10 13 15 if type mktemp >/dev/null 2>&1; then - gztmpdir=`mktemp -dt` + gztmpdir=`mktemp -d` else gztmpdir=/tmp/gztmp$$; mkdir $gztmpdir fi || { (exit 127); exit 127; }