summaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch2/svk.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb/fetch2/svk.py')
-rw-r--r--lib/bb/fetch2/svk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch2/svk.py b/lib/bb/fetch2/svk.py
index 213d0d3ec..70f72c80a 100644
--- a/lib/bb/fetch2/svk.py
+++ b/lib/bb/fetch2/svk.py
@@ -72,7 +72,7 @@ class Svk(FetchMethod):
logger.debug(2, "Fetch: creating temporary directory")
bb.mkdirhier(data.expand('${WORKDIR}', localdata))
data.setVar('TMPBASE', data.expand('${WORKDIR}/oesvk.XXXXXX', localdata), localdata)
- tmppipe = os.popen(data.getVar('MKTEMPDIRCMD', localdata, 1) or "false")
+ tmppipe = os.popen(data.getVar('MKTEMPDIRCMD', localdata, True) or "false")
tmpfile = tmppipe.readline().strip()
if not tmpfile:
logger.error()