From: Zac Medico Date: Sat, 29 Dec 2007 09:04:45 +0000 (-0000) Subject: Make doebuild() check XARGS together with ARCH and USERLAND. X-Git-Tag: v2.2_pre1~97 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a183e7baa09846bbbed488875db7138ee7402e68;p=portage.git Make doebuild() check XARGS together with ARCH and USERLAND. svn path=/main/trunk/; revision=9090 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 217db0aa7..40e3d1749 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -4537,9 +4537,9 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, if env_stat: mysettings._filter_calling_env = True else: - for var in "ARCH", "USERLAND": + for var in "ARCH", "USERLAND", "XARGS": value = mysettings.get(var) - if value: + if value and value.strip(): continue if var == "USERLAND" and userland: mysettings["USERLAND"] = userland