summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/__init__.py')
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 6ef0c6fe7a..7773c16e16 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -1424,7 +1424,7 @@ class FetchMethod(object):
1424 if urlpath.find("/") != -1: 1424 if urlpath.find("/") != -1:
1425 destdir = urlpath.rsplit("/", 1)[0] + '/' 1425 destdir = urlpath.rsplit("/", 1)[0] + '/'
1426 bb.utils.mkdirhier("%s/%s" % (unpackdir, destdir)) 1426 bb.utils.mkdirhier("%s/%s" % (unpackdir, destdir))
1427 cmd = 'cp -fpPR %s %s' % (file, destdir) 1427 cmd = 'cp -fpPRH %s %s' % (file, destdir)
1428 1428
1429 if not cmd: 1429 if not cmd:
1430 return 1430 return