From: Mike Frysinger Date: Thu, 11 Jan 2007 22:30:19 +0000 (-0000) Subject: use cached suffix value and if it is not valid, lets warn X-Git-Tag: v2.1.2~55 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4990ea47957fe42a27c235feba4f3d1bdc338f09;p=portage.git use cached suffix value and if it is not valid, lets warn svn path=/main/trunk/; revision=5576 --- diff --git a/bin/ecompressdir b/bin/ecompressdir index f6b7ed74d..3f6fb251e 100755 --- a/bin/ecompressdir +++ b/bin/ecompressdir @@ -10,7 +10,10 @@ fi # figure out the new suffix suffix=$(ecompress --suffix) -[[ -z ${suffix} ]] && exit 0 +if [[ -z ${suffix} ]] ; then + vecho "${0##*/}: unable to figure out compressed suffix" + exit 1 +fi source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh @@ -25,7 +28,7 @@ for dir in "$@" ; do vecho "${0##*/}: $(ecompress --bin) ${dir#${D}}" fi - find "${dir}" -type f '!' -name '*'$(ecompress --suffix) -print0 | xargs -0 ecompress + find "${dir}" -type f '!' -name '*'${suffix} -print0 | xargs -0 ecompress ((ret+=$?)) find -L "${dir}" -type l | \ while read brokenlink ; do