diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-08-06 08:37:46 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-08-06 08:37:46 +0000 |
commit | 66259e313ce1c7c0cb78b8b018ec09e1411bcc68 (patch) | |
tree | 8d0733091999ff5bf78e8d9f5dc91f6b683502ec | |
parent | 33c21a1dc396d727a3b420e1eabdb2c57aa40b8c (diff) | |
download | portage-66259e313ce1c7c0cb78b8b018ec09e1411bcc68.tar.gz portage-66259e313ce1c7c0cb78b8b018ec09e1411bcc68.tar.bz2 portage-66259e313ce1c7c0cb78b8b018ec09e1411bcc68.zip |
Sort the USE flags.
svn path=/main/trunk/; revision=4181
-rw-r--r-- | pym/portage.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage.py b/pym/portage.py index 57190fc5b..2c5841ef6 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1551,6 +1551,7 @@ class config: usesplit = [ x for x in myflags if not x.startswith("-") and \ x not in self.usemask and x not in self.pusemask ] + usesplit.sort() # Use the calculated USE flags to regenerate the USE_EXPAND flags so # that they are consistent. |