From: Brian Dolbec Date: Mon, 19 Mar 2012 06:49:20 +0000 (-0700) Subject: fix a missed hardcoded path not using the portage.root. X-Git-Tag: gentoolkit-0.3.0.6~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fd5b792c965f9d8e2a01b01c23ecf4f835a5eb99;p=gentoolkit.git fix a missed hardcoded path not using the portage.root. --- diff --git a/pym/gentoolkit/revdep_rebuild/settings.py b/pym/gentoolkit/revdep_rebuild/settings.py index 3c8b9d3..54d7f9e 100644 --- a/pym/gentoolkit/revdep_rebuild/settings.py +++ b/pym/gentoolkit/revdep_rebuild/settings.py @@ -14,7 +14,7 @@ DEFAULTS = { 'DEFAULT_ENV_FILE': os.path.join(portage.root, 'etc/profile.env'), 'REVDEP_CONFDIR': os.path.join(portage.root, 'etc/revdep-rebuild/'), 'PKG_DIR': os.path.join(portage.root, 'var/db/pkg/'), - 'DEFAULT_TMP_DIR': '/var/cache/revdep-rebuild', #cache default location + 'DEFAULT_TMP_DIR': os.path.join(portage.root, '/var/cache/revdep-rebuild'), #cache default location # number of maximum allowed files to be parsed at once 'CMD_MAX_ARGS': 1000,