From patchwork Thu Jan 19 09:22:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [CONSOLIDATED,PULL,20/33] site/ix86-common: fix an error Date: Thu, 19 Jan 2012 09:22:41 -0000 From: Saul Wold X-Patchwork-Id: 19753 Message-Id: <171a9c9f73648326529a68244ebcc39b18713552.1326964778.git.sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org From: Nitin A Kamble Fixed this line ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_int=1} as this line ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_char=1} This issue was causing guile recipe to compile-fail for x86 target. Signed-off-by: Nitin A Kamble --- meta/site/ix86-common | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/site/ix86-common b/meta/site/ix86-common index 512c9a0..e2796eb 100644 --- a/meta/site/ix86-common +++ b/meta/site/ix86-common @@ -1,6 +1,6 @@ # general ac_cv_sizeof_char=${ac_cv_sizeof_char=1} -ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_int=1} +ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_char=1} ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} ac_cv_sizeof_unsigned_char_p=${ac_cv_sizeof_unsigned_char_p=4} ac_cv_sizeof_int=${ac_cv_sizeof_int=4}