Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13488 - main/branches/2.1.6/bin
Date: Thu, 30 Apr 2009 07:05:37
Message-Id: E1LzQKs-0007FL-N0@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-04-30 07:05:34 +0000 (Thu, 30 Apr 2009)
3 New Revision: 13488
4
5 Modified:
6 main/branches/2.1.6/bin/egencache
7 Log:
8 Set local_config=False in config constructor calls, since egencache is similar
9 to repoman in the way that it's used to distribute something to other users
10 and thus site-specific local configuration is irrelevant. (trunk r13323)
11
12 Modified: main/branches/2.1.6/bin/egencache
13 ===================================================================
14 --- main/branches/2.1.6/bin/egencache 2009-04-30 07:04:31 UTC (rev 13487)
15 +++ main/branches/2.1.6/bin/egencache 2009-04-30 07:05:34 UTC (rev 13488)
16 @@ -277,7 +277,7 @@
17 env['PORTAGE_DEPCACHEDIR'] = options.cache_dir
18
19 settings = portage.config(config_root=config_root,
20 - target_root='/', env=env)
21 + target_root='/', local_config=False, env=env)
22
23 default_opts = None
24 if not options.ignore_default_opts:
25 @@ -293,7 +293,7 @@
26 env['PORTAGE_DEPCACHEDIR'] = options.cache_dir
27
28 settings = portage.config(config_root=config_root,
29 - target_root='/', env=env)
30 + target_root='/', local_config=False, env=env)
31
32 if not options.update:
33 parser.error('No action specified (--update ' + \