summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/selftest/cases/devtool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index 21e2268689..14a9d2f923 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -54,7 +54,7 @@ def setUpModule():
54 result = runCmd('git rev-parse --show-toplevel', cwd=canonical_layerpath) 54 result = runCmd('git rev-parse --show-toplevel', cwd=canonical_layerpath)
55 oldreporoot = result.output.rstrip() 55 oldreporoot = result.output.rstrip()
56 newmetapath = os.path.join(corecopydir, os.path.relpath(oldmetapath, oldreporoot)) 56 newmetapath = os.path.join(corecopydir, os.path.relpath(oldmetapath, oldreporoot))
57 runCmd('git clone %s %s' % (oldreporoot, corecopydir), cwd=templayerdir) 57 runCmd('git clone file://%s %s' % (oldreporoot, corecopydir), cwd=templayerdir)
58 # Now we need to copy any modified files 58 # Now we need to copy any modified files
59 # You might ask "why not just copy the entire tree instead of 59 # You might ask "why not just copy the entire tree instead of
60 # cloning and doing this?" - well, the problem with that is 60 # cloning and doing this?" - well, the problem with that is