diff options
author | Amy Fong <amy.fong@windriver.com> | 2015-06-18 16:10:29 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-06-19 15:27:42 -0400 |
commit | 336cb30da95e199dac299d2dc08050aad0e95e0a (patch) | |
tree | 1edd9ef161e423a0683fef1f79338eb17961b0a9 | |
parent | a623810bd044b895d292a334266cb2cc6a695054 (diff) | |
download | meta-virtualization-336cb30da95e199dac299d2dc08050aad0e95e0a.tar.gz |
seabios fails to build when ccache enabled
From eadb837b8467af26a7370427e4cb98ccad63c670 Mon Sep 17 00:00:00 2001
From: Amy Fong <amy.fong@windriver.com>
Date: Wed, 17 Jun 2015 16:40:25 -0400
Subject: [PATCH] seabios fails to build when ccache enabled
HOSTCC needs to be quoted since it may have whitespace values.
(as in the case when ccache is enabled)
Signed-off-by: Amy Fong <amy.fong@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | recipes-extended/seabios/seabios_1.7.5.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-extended/seabios/seabios_1.7.5.bb b/recipes-extended/seabios/seabios_1.7.5.bb index 511578fc..d57e2506 100644 --- a/recipes-extended/seabios/seabios_1.7.5.bb +++ b/recipes-extended/seabios/seabios_1.7.5.bb | |||
@@ -23,7 +23,7 @@ FILES_${PN} = "/usr/share/firmware" | |||
23 | DEPENDS = "util-linux-native file-native bison-native flex-native gettext-native iasl-native python-native" | 23 | DEPENDS = "util-linux-native file-native bison-native flex-native gettext-native iasl-native python-native" |
24 | 24 | ||
25 | TUNE_CCARGS = "" | 25 | TUNE_CCARGS = "" |
26 | EXTRA_OEMAKE += "HOSTCC=${BUILD_CC}" | 26 | EXTRA_OEMAKE += "HOSTCC='${BUILD_CC}'" |
27 | EXTRA_OEMAKE += "CROSS_PREFIX=${TARGET_PREFIX}" | 27 | EXTRA_OEMAKE += "CROSS_PREFIX=${TARGET_PREFIX}" |
28 | 28 | ||
29 | do_configure() { | 29 | do_configure() { |