diff options
author | Fabian Groffen <grobian@gentoo.org> | 2009-09-05 10:00:22 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2009-09-05 10:00:22 +0000 |
commit | 2b68c711bc37fe45c940a498227f2c367335b659 (patch) | |
tree | 80e87342519580883bf9c7d13f6256c1aa5e1322 /bin/archive-conf | |
parent | Remove unnecessary redundant dict lookup at the beginning of catpkgsplit(). (diff) | |
download | portage-2b68c711bc37fe45c940a498227f2c367335b659.tar.gz portage-2b68c711bc37fe45c940a498227f2c367335b659.tar.bz2 portage-2b68c711bc37fe45c940a498227f2c367335b659.zip |
Fix usage of VDB_PATH
svn path=/main/trunk/; revision=14187
Diffstat (limited to 'bin/archive-conf')
-rwxr-xr-x | bin/archive-conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/archive-conf b/bin/archive-conf index aca8d285c..f9a4d5724 100755 --- a/bin/archive-conf +++ b/bin/archive-conf @@ -62,7 +62,7 @@ def archive_conf(): md5_match_hash[conf] = '' # Find all the CONTENT files in VDB_PATH. - content_files += os.popen(FIND_EXTANT_CONTENTS % (portage.root+portage.VDB_PATH)).readlines() + content_files += os.popen(FIND_EXTANT_CONTENTS % (os.path.join(portage.root, portage.VDB_PATH))).readlines() # Search for the saved md5 checksum of all the specified config files # and see if the current file is unmodified or not. |