summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index b853da30bd..8b8be8fa8e 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -838,6 +838,9 @@ def runfetchcmd(cmd, d, quiet=False, cleanup=None, log=None, workdir=None):
838 if val: 838 if val:
839 cmd = 'export ' + var + '=\"%s\"; %s' % (val, cmd) 839 cmd = 'export ' + var + '=\"%s\"; %s' % (val, cmd)
840 840
841 # Disable pseudo as it may affect ssh, potentially causing it to hang.
842 cmd = 'export PSEUDO_DISABLED=1; ' + cmd
843
841 logger.debug(1, "Running %s", cmd) 844 logger.debug(1, "Running %s", cmd)
842 845
843 success = False 846 success = False