From 75bbd42c4be2151c06a60594ea4f08c451d13b50 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 28 Mar 2007 18:58:58 +0000 Subject: For bug #172539, fix ecompressdir suffix handling so that automatic decompression of Z, gz, and bz2 suffixes works properly. svn path=/main/trunk/; revision=6309 --- bin/ecompressdir | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'bin') diff --git a/bin/ecompressdir b/bin/ecompressdir index a037adc60..22ab4310c 100755 --- a/bin/ecompressdir +++ b/bin/ecompressdir @@ -53,7 +53,7 @@ funk_up_dir() { [[ ${act} == "compress" ]] && negate="!" # first we act on all the files - find "${dir}" -type f ${negate} -iname '*.'${suffix} -print0 | ${XARGS} -0 ${binary} + find "${dir}" -type f ${negate} -iname '*'${suffix} -print0 | ${XARGS} -0 ${binary} ((ret+=$?)) find "${dir}" -type l -print0 | \ @@ -62,11 +62,11 @@ funk_up_dir() { olddest=$(readlink "${brokenlink}") [[ ${act} == "compress" ]] \ && newdest="${olddest}${suffix}" \ - || newdest="${olddest%.${suffix}}" + || newdest="${olddest%${suffix}}" rm -f "${brokenlink}" [[ ${act} == "compress" ]] \ && ln -snf "${newdest}" "${brokenlink}${suffix}" \ - || ln -snf "${newdest}" "${brokenlink%.${suffix}}" + || ln -snf "${newdest}" "${brokenlink%${suffix}}" ((ret+=$?)) done } @@ -112,9 +112,9 @@ for dir in "$@" ; do find "${dir}" -type f -name '*.ecompress.file' -print0 | ${XARGS} -0 rm -f # not uncommon for packages to compress doc files themselves - funk_up_dir "decompress" "Z" "gunzip" - funk_up_dir "decompress" "gz" "gunzip" - funk_up_dir "decompress" "bz2" "bunzip2" + funk_up_dir "decompress" ".Z" "gunzip" + funk_up_dir "decompress" ".gz" "gunzip" + funk_up_dir "decompress" ".bz2" "bunzip2" # forcibly break all hard links as some compressors whine about it find "${dir}" -type f -links +1 -exec env file="{}" sh -c \ -- cgit v1.2.3-1-g7c22