Am 02.04.2014 22:02, schrieb Douglas J Hunley:
>
> On Wed, Apr 2, 2014 at 2:29 PM, Alan McKinnon <[email protected]
> <mailto:[email protected]>> wrote:
>
>     man 5 make.conf
>
>
> What isn't listed in the man page is if you should simply unset it:
> PORTAGE_COMPRESS=""
> or set it to something like /bin/true
>
> Any thoughts?

I just checked portages git repository. The interesting file is
bin/ebuild-helpers/ecompress [1]

There we have:

    12 # setup compression stuff
    13 PORTAGE_COMPRESS=${PORTAGE_COMPRESS-bzip2}
    14 [[ -z ${PORTAGE_COMPRESS} ]] && exit 0

If PORTAGE_COMPRESS is not declared it defaults to bzip2. If it is
declared, but without value or empty the script exits. So a

PORTAGE_COMPRESS=""

should be fine.

 ~frukto

----
[1]
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=blob;f=bin/ebuild-helpers/ecompress;hb=d8345b546c4212d928b38b972921879ef9fa466c

Reply via email to