summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/recipetool/create.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py
index edb6467103..b65e59de6a 100644
--- a/scripts/lib/recipetool/create.py
+++ b/scripts/lib/recipetool/create.py
@@ -824,7 +824,8 @@ def create_recipe(args):
824 extraoutdir = os.path.join(os.path.dirname(outfile), pn) 824 extraoutdir = os.path.join(os.path.dirname(outfile), pn)
825 bb.utils.mkdirhier(extraoutdir) 825 bb.utils.mkdirhier(extraoutdir)
826 for destfn, extrafile in extrafiles.items(): 826 for destfn, extrafile in extrafiles.items():
827 shutil.move(extrafile, os.path.join(extraoutdir, destfn)) 827 fn = destfn.format(pn=pn, pv=realpv)
828 shutil.move(extrafile, os.path.join(extraoutdir, fn))
828 829
829 lines = lines_before 830 lines = lines_before
830 lines_before = [] 831 lines_before = []