From b232f7bb85a9ef1db3fcd37dbac330d1134a05b0 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 11 Apr 2008 21:58:06 +0000 Subject: Make file_get() redirect FETCHCOMMAND output to stdout just like portage.fetch() does. Thanks to Ramereth for reporting. svn path=/main/trunk/; revision=9844 --- pym/portage/getbinpkg.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'pym/portage/getbinpkg.py') diff --git a/pym/portage/getbinpkg.py b/pym/portage/getbinpkg.py index 9e03b1f0e..5ace5b0b6 100644 --- a/pym/portage/getbinpkg.py +++ b/pym/portage/getbinpkg.py @@ -398,7 +398,12 @@ def file_get(baseurl,dest,conn=None,fcmd=None): lexer = shlex.shlex(StringIO.StringIO(fcmd), posix=True) lexer.whitespace_split = True myfetch = [varexpand(x, mydict=variables) for x in lexer] - retval = spawn(myfetch, env=os.environ.copy()) + fd_pipes= { + 0:sys.stdin.fileno(), + 1:sys.stdout.fileno(), + 2:sys.stdout.fileno() + } + retval = spawn(myfetch, env=os.environ.copy(), fd_pipes=fd_pipes) if retval != os.EX_OK: sys.stderr.write("Fetcher exited with a failure condition.\n") return 0 -- cgit v1.2.3-1-g7c22