Skip to content

Commit

Permalink
app-portage/eix: Own the cache directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mgorny committed Nov 6, 2016
1 parent 39f0ae3 commit 0674aa6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ src_install() {
default
dobashcomp bash/eix
systemd_dotmpfilesd tmpfiles.d/eix.conf

keepdir /var/cache/eix
}

pkg_postinst() {
local cache=${EROOT%/}/var/cache/${PN}
if [[ ! -d ${cache} ]]; then
mkdir "${cache}" || die
if ! use prefix; then
chown portage:portage "${cache}" || die
fi
if ! use prefix; then
# note: if this is done in src_install(), portage:portage
# ownership may be reset to root
fowners portage:portage "${EROOT%/}"/var/cache/eix
fi

local obs=${EROOT%/}/var/cache/eix.previous
Expand Down

0 comments on commit 0674aa6

Please sign in to comment.