From 745fac16ecbc3473df57357acf8c05ae6958168a Mon Sep 17 00:00:00 2001 From: Matthew McClintock Date: Wed, 29 Feb 2012 04:46:32 +0000 Subject: Fix quoting errors in recipes Signed-off-by: Matthew McClintock --- recipes-kernel/linux/linux-qoriq-sdk.inc | 4 ++-- recipes-kernel/u-boot/u-boot_git.bb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/recipes-kernel/linux/linux-qoriq-sdk.inc b/recipes-kernel/linux/linux-qoriq-sdk.inc index 06896ee..4d6fc3a 100644 --- a/recipes-kernel/linux/linux-qoriq-sdk.inc +++ b/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/recipes-kernel/u-boot/u-boot_git.bb b/recipes-kernel/u-boot/u-boot_git.bb index af5343f..43fc2de 100644 --- a/recipes-kernel/u-boot/u-boot_git.bb +++ b/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" -- cgit v1.2.3-54-g00ecf