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>
This commit is contained in:
Amy Fong 2015-06-18 16:10:29 -04:00 committed by Bruce Ashfield
parent a623810bd0
commit 336cb30da9

View File

@ -23,7 +23,7 @@ FILES_${PN} = "/usr/share/firmware"
DEPENDS = "util-linux-native file-native bison-native flex-native gettext-native iasl-native python-native"
TUNE_CCARGS = ""
EXTRA_OEMAKE += "HOSTCC=${BUILD_CC}"
EXTRA_OEMAKE += "HOSTCC='${BUILD_CC}'"
EXTRA_OEMAKE += "CROSS_PREFIX=${TARGET_PREFIX}"
do_configure() {