From: Zac Medico Date: Sun, 10 Aug 2008 11:07:05 +0000 (-0000) Subject: When testing userpriv write access in $DISTDIR, redirect the 'permission X-Git-Tag: v2.2_rc7~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6c4d87c67cb6c745af4a94c4067e6fb604d77433;p=portage.git When testing userpriv write access in $DISTDIR, redirect the 'permission denied' error message to /dev/null. svn path=/main/trunk/; revision=11393 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 72deec23c..e06dd8dad 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3201,7 +3201,7 @@ def _spawn_fetch(settings, args, **kwargs): return rval _userpriv_test_write_file_cache = {} -_userpriv_test_write_cmd_script = "> %(file_path)s ; rval=$? ; " + \ +_userpriv_test_write_cmd_script = "touch %(file_path)s 2>/dev/null ; rval=$? ; " + \ "rm -f %(file_path)s ; exit $rval" def _userpriv_test_write_file(settings, file_path):