diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-02-19 16:39:50 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-23 17:35:27 +0000 |
commit | 5eb9ffe1e0c161e1128558495866aa4a68aab58a (patch) | |
tree | 956e645e681a7012bac4e16231abf42062884b4a | |
parent | 3c2f5fd0c7894b3c0da494ffdd87bd13bf33c3e7 (diff) | |
download | poky-5eb9ffe1e0c161e1128558495866aa4a68aab58a.tar.gz |
recipetool: fix regression caused by previous commit
Option was renamed in the setup code but not in the code that used it.
(From OE-Core rev: 4b4f2d4f2869d6d5d564cc1b2d733f41ab5a3b9b)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/lib/recipetool/create.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py index 290fc1386b..ae599cbb70 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py | |||
@@ -110,8 +110,8 @@ def create_recipe(args): | |||
110 | if '://' in args.source: | 110 | if '://' in args.source: |
111 | # Fetch a URL | 111 | # Fetch a URL |
112 | srcuri = args.source | 112 | srcuri = args.source |
113 | if args.externalsrc: | 113 | if args.extract_to: |
114 | srctree = args.externalsrc | 114 | srctree = args.extract_to |
115 | else: | 115 | else: |
116 | tempsrc = tempfile.mkdtemp(prefix='recipetool-') | 116 | tempsrc = tempfile.mkdtemp(prefix='recipetool-') |
117 | srctree = tempsrc | 117 | srctree = tempsrc |
@@ -126,8 +126,8 @@ def create_recipe(args): | |||
126 | srctree = os.path.join(srctree, srcsubdir) | 126 | srctree = os.path.join(srctree, srcsubdir) |
127 | else: | 127 | else: |
128 | # Assume we're pointing to an existing source tree | 128 | # Assume we're pointing to an existing source tree |
129 | if args.externalsrc: | 129 | if args.extract_to: |
130 | logger.error('externalsrc cannot be specified if source is a directory') | 130 | logger.error('--extract-to cannot be specified if source is a directory') |
131 | sys.exit(1) | 131 | sys.exit(1) |
132 | if not os.path.isdir(args.source): | 132 | if not os.path.isdir(args.source): |
133 | logger.error('Invalid source directory %s' % args.source) | 133 | logger.error('Invalid source directory %s' % args.source) |