From: Zac Medico Date: Fri, 23 Feb 2007 00:56:06 +0000 (-0000) Subject: spawn rsync without a shell. X-Git-Tag: v2.2_pre1~1656 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=659f4460836120c4de64dea380fda59908c07329;p=portage.git spawn rsync without a shell. svn path=/main/trunk/; revision=6051 --- diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index 91b265669..f96db811e 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -4030,7 +4030,9 @@ def action_sync(settings, trees, mtimedb, myopts, myaction): elif (servertimestamp == 0) or (servertimestamp > mytimestamp): # actual sync mycommand=rsynccommand+" "+dosyncuri+"/ "+myportdir - exitcode=portage.spawn(mycommand,settings,free=1) + mycommand = mycommand.split() + exitcode = portage.process.spawn(mycommand, + env=settings.environ()) if exitcode in [0,1,2,3,4,11,14,20,21]: break elif exitcode in [0,1,2,3,4,11,14,20,21]: