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 08:08:19 +0000 |
commit | 4b4f2d4f2869d6d5d564cc1b2d733f41ab5a3b9b (patch) | |
tree | 3ae18f12d7d1fedfe2d49694fd5bb04b5c7ea643 /scripts/lib | |
parent | c4de42aadd4c8a4a8f16c25e7dcdefef79daf030 (diff) | |
download | openembedded-core-4b4f2d4f2869d6d5d564cc1b2d733f41ab5a3b9b.tar.gz openembedded-core-4b4f2d4f2869d6d5d564cc1b2d733f41ab5a3b9b.tar.bz2 openembedded-core-4b4f2d4f2869d6d5d564cc1b2d733f41ab5a3b9b.zip |
recipetool: fix regression caused by previous commit
Option was renamed in the setup code but not in the code that used it.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-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): if '://' in args.source: # Fetch a URL srcuri = args.source - if args.externalsrc: - srctree = args.externalsrc + if args.extract_to: + srctree = args.extract_to else: tempsrc = tempfile.mkdtemp(prefix='recipetool-') srctree = tempsrc @@ -126,8 +126,8 @@ def create_recipe(args): srctree = os.path.join(srctree, srcsubdir) else: # Assume we're pointing to an existing source tree - if args.externalsrc: - logger.error('externalsrc cannot be specified if source is a directory') + if args.extract_to: + logger.error('--extract-to cannot be specified if source is a directory') sys.exit(1) if not os.path.isdir(args.source): logger.error('Invalid source directory %s' % args.source) |