summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r--meta/classes/kernel.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 2e36e86eb8..9c492a3ecc 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -181,8 +181,8 @@ sysroot_stage_all_append() {
181kernel_do_configure() { 181kernel_do_configure() {
182 # Copy defconfig to .config if .config does not exist. This allows 182 # Copy defconfig to .config if .config does not exist. This allows
183 # recipes to manage the .config themselves in do_configure_prepend(). 183 # recipes to manage the .config themselves in do_configure_prepend().
184 if [ -f "${WORKDIR}/defconfig" ] && [ ! -f "${S}/.config" ]; then 184 if [ -f "${WORKDIR}/defconfig" ] && [ ! -f "${B}/.config" ]; then
185 cp "${WORKDIR}/defconfig" "${S}/.config" 185 cp "${WORKDIR}/defconfig" "${B}/.config"
186 fi 186 fi
187 yes '' | oe_runmake oldconfig 187 yes '' | oe_runmake oldconfig
188 188