[gnome-continuous-yocto/gnomeostree-3.28-rocko: 8203/8267] recipetool: pass absolute source tree path to plugins



commit 611e4b43d8c9ba361805beb6e69147adf57f558f
Author: Paul Eggleton <paul eggleton linux intel com>
Date:   Wed Sep 20 12:03:39 2017 +1200

    recipetool: pass absolute source tree path to plugins
    
    We shouldn't be passing a relative path to the plugins if that's what's
    been specified on the recipetool command line.
    
    (From OE-Core rev: 821742f48723a66fdafe5406bb57188b2f88889a)
    
    Signed-off-by: Paul Eggleton <paul eggleton linux intel com>
    Signed-off-by: Armin Kuster <akuster mvista com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 scripts/lib/recipetool/create.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py
index ca474fc..1532735 100644
--- a/scripts/lib/recipetool/create.py
+++ b/scripts/lib/recipetool/create.py
@@ -613,9 +613,9 @@ def create_recipe(args):
 
     if args.src_subdir:
         srcsubdir = os.path.join(srcsubdir, args.src_subdir)
-        srctree_use = os.path.join(srctree, args.src_subdir)
+        srctree_use = os.path.abspath(os.path.join(srctree, args.src_subdir))
     else:
-        srctree_use = srctree
+        srctree_use = os.path.abspath(srctree)
 
     if args.outfile and os.path.isdir(args.outfile):
         outfile = None


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]