From: Saul Wold <sgw@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH] siteinfo: add existiance check for site config file
Date: Thu, 23 May 2013 07:37:12 -0700 [thread overview]
Message-ID: <1369319832-24797-1-git-send-email-sgw@linux.intel.com> (raw)
There is a condition where ncurses adds a site config file to CONFIG_SITE list
and then binutils configure tries to use the siteinfo list before ncurses has
installed the file. The existance test is there in the BBPATH search, but not
in the SYSROOTCACHE check, so add it here.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/classes/siteinfo.bbclass | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta/classes/siteinfo.bbclass b/meta/classes/siteinfo.bbclass
index 09f88c6..87a4225 100644
--- a/meta/classes/siteinfo.bbclass
+++ b/meta/classes/siteinfo.bbclass
@@ -139,7 +139,8 @@ def siteinfo_get_files(d, no_cache = False):
if os.path.isdir(path_siteconfig):
for i in os.listdir(path_siteconfig):
filename = os.path.join(path_siteconfig, i)
- sitefiles += filename + " "
+ if os.path.exists(filename):
+ sitefiles += filename + " "
return sitefiles
--
1.8.1.4
next reply other threads:[~2013-05-23 14:37 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-23 14:37 Saul Wold [this message]
2013-05-23 15:51 ` [PATCH] siteinfo: add existiance check for site config file Saul Wold
2013-05-23 16:08 ` Mark Hatle
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1369319832-24797-1-git-send-email-sgw@linux.intel.com \
--to=sgw@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox