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:37:48 +0100 |
commit | 84d8b8846556cee191afb93016a2c38df8aaa7ba (patch) | |
tree | 8c7a1db8ecacd0acfb38f6d4eee0e45f95644613 | |
parent | f3c50743917974f0eeab6d9eefc2e7b572a8a787 (diff) | |
download | openembedded-core-84d8b8846556cee191afb93016a2c38df8aaa7ba.tar.gz openembedded-core-84d8b8846556cee191afb93016a2c38df8aaa7ba.tar.bz2 openembedded-core-84d8b8846556cee191afb93016a2c38df8aaa7ba.zip |
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>
-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): 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) |