X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gzexe.in;h=e59b5fc38c9a4a53f93f8be65e5eb097b077e965;hb=0377937105e413b9c08207bd253f76fe5c1493b1;hp=a27ec5c3828a31c6ef881c0aa3e8a48f3e7ecd9e;hpb=e7921f54c622e3b32e525f345bc34308821e4ae0;p=debian%2Fgzip diff --git a/gzexe.in b/gzexe.in index a27ec5c..e59b5fc 100644 --- a/gzexe.in +++ b/gzexe.in @@ -13,12 +13,12 @@ # On Ultrix, /bin/sh is too buggy, change the first line to: #!/bin/sh5 -# Copyright (C) 1998, 2002, 2004, 2006 Free Software Foundation +# Copyright (C) 1998, 2002, 2004, 2006, 2007 Free Software Foundation # 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,24 +36,28 @@ nl=' IFS=" $tab$nl" version='gzexe (gzip) @VERSION@ -Copyright (C) 2006 Free Software Foundation, Inc. +Copyright (C) 2007, 2009-2010 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. Written by Jean-loup Gailly.' -usage='Usage: gzexe [OPTION] FILE... +usage="Usage: $0 [OPTION] FILE... Rename each FILE with a compressed version of itself, renaming FILE to FILE~. -d Decompress each FILE instead of compressing it. --help display this help and exit --version output version information and exit -Report bugs to .' +Report bugs to ." -PATH="BINDIR:$PATH" +bindir=@bindir@ +case $1 in +--__bindir) bindir=${2?}; shift; shift;; +esac +PATH=$bindir:$PATH decomp=0 res=0 @@ -106,11 +110,11 @@ for i do continue fi case /$file in - */basename | */cat | */chmod | */cp | \ + */basename | */bash | */cat | */chmod | */cp | \ */dirname | */echo | */expr | */gzip | \ - */ln | */mkdir | */mktemp | */mv | */rm | */rmdir | \ + */ln | */mkdir | */mktemp | */mv | */rm | \ */sed | */sh | */sleep | */test | */tail) - echo >&2 "$0: $i would depend on itself"; continue;; + echo >&2 "$0: $i might depend on itself"; continue;; esac dir=`dirname "$file"` || dir=$TMPDIR @@ -167,7 +171,7 @@ fi || { (exit 127); exit 127; } gztmp=$gztmpdir/$0 case $0 in -* | */*' -') mkdir -p "$gztmp" && rmdir "$gztmp";; +') mkdir -p "$gztmp" && rm -r "$gztmp";; */*) gztmp=$gztmpdir/`basename "$0"`;; esac || { (exit 127); exit 127; }