diff options
Diffstat (limited to 'scripts/lib/recipetool/create.py')
-rw-r--r-- | 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 7080558beb..edb6467103 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py | |||
@@ -735,7 +735,7 @@ def create_recipe(args): | |||
735 | if srcsubdir and not args.binary: | 735 | if srcsubdir and not args.binary: |
736 | # (for binary packages we explicitly specify subdir= when fetching to | 736 | # (for binary packages we explicitly specify subdir= when fetching to |
737 | # match the default value of S, so we don't need to set it in that case) | 737 | # match the default value of S, so we don't need to set it in that case) |
738 | lines_before.append('S = "${WORKDIR}/%s"' % srcsubdir) | 738 | lines_before.append('S = "${UNPACKDIR}/%s"' % srcsubdir) |
739 | lines_before.append('') | 739 | lines_before.append('') |
740 | 740 | ||
741 | if pkgarch: | 741 | if pkgarch: |
@@ -839,7 +839,7 @@ def create_recipe(args): | |||
839 | line = line.replace(realpv, '${PV}') | 839 | line = line.replace(realpv, '${PV}') |
840 | if pn: | 840 | if pn: |
841 | line = line.replace(pn, '${BPN}') | 841 | line = line.replace(pn, '${BPN}') |
842 | if line == 'S = "${WORKDIR}/${BPN}-${PV}"' or 'tmp-recipetool-' in line: | 842 | if line == 'S = "${UNPACKDIR}/${BPN}-${PV}"' or 'tmp-recipetool-' in line: |
843 | skipblank = True | 843 | skipblank = True |
844 | continue | 844 | continue |
845 | elif line.startswith('SRC_URI = '): | 845 | elif line.startswith('SRC_URI = '): |