From 74b320981e8abcb0b80cae899ed70700ff316a8d Mon Sep 17 00:00:00 2001 From: Matthew McClintock Date: Wed, 29 Feb 2012 04:46:32 +0000 Subject: [PATCH] Fix quoting errors in recipes Signed-off-by: Matthew McClintock --- meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc | 4 ++-- meta-fsl-ppc/recipes-kernel/u-boot/u-boot_git.bb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc b/meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc index 06896eea..4d6fc3a7 100644 --- a/meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc +++ b/meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc @@ -10,10 +10,10 @@ SRC_URI = "git://git.freescale.com/ppc/sdk/linux.git \ " KSRC ?= "" -S = ${@base_conditional("KSRC", "", "${WORKDIR}/git", "${KSRC}", d)} +S = '${@base_conditional("KSRC", "", "${WORKDIR}/git", "${KSRC}", d)}' # make everything compatible for the time being -COMPATIBLE_MACHINE_$MACHINE = $MACHINE +COMPATIBLE_MACHINE_$MACHINE = "$MACHINE" # only powerpc and powerpc64 are compatible COMPATIBLE_HOST = "(powerpc|powerpc64)" diff --git a/meta-fsl-ppc/recipes-kernel/u-boot/u-boot_git.bb b/meta-fsl-ppc/recipes-kernel/u-boot/u-boot_git.bb index af5343ff..43fc2def 100644 --- a/meta-fsl-ppc/recipes-kernel/u-boot/u-boot_git.bb +++ b/meta-fsl-ppc/recipes-kernel/u-boot/u-boot_git.bb @@ -25,7 +25,7 @@ EXTRA_OEMAKE = 'CROSS_COMPILE=${WRAP_TARGET_PREFIX} CC="${WRAP_TARGET_PREFIX}gcc PACKAGE_ARCH = "${MACHINE_ARCH}" USRC ?= "" -S = ${@base_conditional("USRC", "", "${WORKDIR}/git", "${USRC}", d)} +S = '${@base_conditional("USRC", "", "${WORKDIR}/git", "${USRC}", d)}' do_compile () { unset LDFLAGS @@ -110,4 +110,4 @@ addtask deploy after do_install FILES_${PN} += "/boot" -ALLOW_EMPTY = 1 +ALLOW_EMPTY = "1" -- 2.40.1