diff options
author | Peter Seebach <peter.seebach@windriver.com> | 2012-05-15 13:16:35 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-15 19:44:37 +0100 |
commit | 9f930c58529246d2f1f3324440d3ab9eb5c15ebd (patch) | |
tree | 9718ac7c4fc122c363a263b87f513d4427d31150 /meta | |
parent | fd4516c2bf4408da0b333573d6f1388c64d33697 (diff) | |
download | poky-9f930c58529246d2f1f3324440d3ab9eb5c15ebd.tar.gz |
tcmode-external-csl.inc: specify the path you couldn't find
While misconfiguring toolchains, I noticed that one of the
diagnostic messages gave me a little less information than I'd
like about what I'd done wrong. Displaying the glob pattern
that couldn't be matched turns out to make it a lot easier to
figure out what you did wrong. (Answer: Not enough coffee.)
(From OE-Core rev: 84d8b8846556cee191afb93016a2c38df8aaa7ba)
Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/distro/include/tcmode-external-csl.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/distro/include/tcmode-external-csl.inc b/meta/conf/distro/include/tcmode-external-csl.inc index 6bdd4668e5..731780b7d7 100644 --- a/meta/conf/distro/include/tcmode-external-csl.inc +++ b/meta/conf/distro/include/tcmode-external-csl.inc | |||
@@ -100,7 +100,7 @@ def populate_toolchain_links(d): | |||
100 | pattern = d.expand('${EXTERNAL_TOOLCHAIN}/bin/${TARGET_PREFIX}*') | 100 | pattern = d.expand('${EXTERNAL_TOOLCHAIN}/bin/${TARGET_PREFIX}*') |
101 | files = glob(pattern) | 101 | files = glob(pattern) |
102 | if not files: | 102 | if not files: |
103 | bb.fatal("Unable to populate toolchain binary symlinks") | 103 | bb.fatal("Unable to populate toolchain binary symlinks in %s" % pattern) |
104 | 104 | ||
105 | bindir = d.getVar('STAGING_BINDIR_TOOLCHAIN', True) | 105 | bindir = d.getVar('STAGING_BINDIR_TOOLCHAIN', True) |
106 | bb.mkdirhier(bindir) | 106 | bb.mkdirhier(bindir) |