summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorPeter Seebach <peter.seebach@windriver.com>2012-05-15 13:16:35 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-15 19:37:48 +0100
commit84d8b8846556cee191afb93016a2c38df8aaa7ba (patch)
tree8c7a1db8ecacd0acfb38f6d4eee0e45f95644613 /meta/conf
parentf3c50743917974f0eeab6d9eefc2e7b572a8a787 (diff)
downloadopenembedded-core-84d8b8846556cee191afb93016a2c38df8aaa7ba.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.) Signed-off-by: Peter Seebach <peter.seebach@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/distro/include/tcmode-external-csl.inc2
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):
pattern = d.expand('${EXTERNAL_TOOLCHAIN}/bin/${TARGET_PREFIX}*')
files = glob(pattern)
if not files:
- bb.fatal("Unable to populate toolchain binary symlinks")
+ bb.fatal("Unable to populate toolchain binary symlinks in %s" % pattern)
bindir = d.getVar('STAGING_BINDIR_TOOLCHAIN', True)
bb.mkdirhier(bindir)