From: Zac Medico Date: Mon, 26 Nov 2007 22:05:10 +0000 (-0000) Subject: Make doebuild skip directory creation for the "cleanrm" command. X-Git-Tag: v2.2_pre1~304 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=47ed5d9b291899a591a3d44240b76f5590220ded;p=portage.git Make doebuild skip directory creation for the "cleanrm" command. svn path=/main/trunk/; revision=8696 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index ae30ae369..b6bb08d8e 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -4267,7 +4267,8 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, # Build directory creation isn't required for any of these. have_build_dirs = False - if mydo not in ("clean", "digest", "fetch", "help", "manifest"): + if mydo not in ("clean", "cleanrm", "digest", + "fetch", "help", "manifest"): mystatus = prepare_build_dirs(myroot, mysettings, cleanup) if mystatus: return mystatus