Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 289255 Details for
Bug 385123
flaggie: NewVariable('IUSE') contains random USE_EXPAND values in output
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Fix writing new USE= with USE expansions enabled.
Fix-writing-new-USE-with-USE-expansions-enabled.patch (text/plain), 872 bytes, created by
Michał Górny
on 2011-10-08 17:18:42 UTC
(
hide
)
Description:
Fix writing new USE= with USE expansions enabled.
Filename:
MIME Type:
Creator:
Michał Górny
Created:
2011-10-08 17:18:42 UTC
Size:
872 bytes
patch
obsolete
>From f2f6eb2eb4918c8098472d7da193682b5330e6c9 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org> >Date: Sat, 8 Oct 2011 19:13:33 +0200 >Subject: [PATCH] Fix writing new USE= with USE expansions enabled. > >Now the variable won't contain USE expansion flags. > >Fixes: https://bugs.gentoo.org/show_bug.cgi?id=385123 >--- > lib/flaggie/makeconf.py | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/lib/flaggie/makeconf.py b/lib/flaggie/makeconf.py >index f3617e6..05ec839 100644 >--- a/lib/flaggie/makeconf.py >+++ b/lib/flaggie/makeconf.py >@@ -633,7 +633,7 @@ class MakeConf(object): > out.append(nl) > > out.append(self.MakeConfFile.UnquotedWord('%s=' % nv.key)) >- out.extend(list(nv)) >+ out.extend([t for t in nv if not t.use_expanded]) > out.append(nl) > > self.masterfile.extend(out) >-- >1.7.7
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 385123
:
289253
| 289255