summaryrefslogtreecommitdiffstats
path: root/bin/quickpkg
diff options
context:
space:
mode:
Diffstat (limited to 'bin/quickpkg')
-rwxr-xr-xbin/quickpkg6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/quickpkg b/bin/quickpkg
index a0799f1b1..0070ffac9 100755
--- a/bin/quickpkg
+++ b/bin/quickpkg
@@ -54,8 +54,10 @@ def quickpkg_main(options, args, eout):
if not dblnk.exists():
# unmerged by a concurrent process
continue
- uses = dblnk.vartree.dbapi.aux_get(cpv, ["IUSE","USE"])
- if "bindist" in uses[0] and "bindist" not in uses[1]:
+ iuse, use = vardb.aux_get(cpv, ["IUSE","USE"])
+ iuse = [ x.lstrip("+-") for x in iuse.split() ]
+ use = use.split()
+ if "bindist" in iuse and "bindist" not in use:
eout.ewarn("%s: package was emerged with USE=-bindist!" % cpv)
eout.ewarn("%s: it may not be legal to redistribute this." % cpv)
eout.ebegin("Building package for %s" % cpv)