From: Zac Medico Date: Thu, 28 Apr 2011 21:31:03 +0000 (-0700) Subject: _postinst_bsdflags: apply to $ROOT, not $D X-Git-Tag: v2.2.0_alpha31~36 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a7971b43b4b04eaadbf10ad635677d4a737d7773;p=portage.git _postinst_bsdflags: apply to $ROOT, not $D --- diff --git a/pym/portage/package/ebuild/doebuild.py b/pym/portage/package/ebuild/doebuild.py index 2a4079109..1c0482224 100644 --- a/pym/portage/package/ebuild/doebuild.py +++ b/pym/portage/package/ebuild/doebuild.py @@ -1406,7 +1406,7 @@ def _postinst_bsdflags(mysettings): if bsd_chflags: # Restore all of the flags saved above. os.system("mtree -e -p %s -U -k flags < %s > /dev/null" % \ - (_shell_quote(mysettings["D"]), + (_shell_quote(mysettings["ROOT"]), _shell_quote(os.path.join(mysettings["T"], "bsdflags.mtree")))) def _post_src_install_uid_fix(mysettings, out):