]> code.ossystems Code Review - meta-freescale.git/commitdiff
Fix quoting errors in recipes
authorMatthew McClintock <msm@freescale.com>
Wed, 29 Feb 2012 04:46:32 +0000 (04:46 +0000)
committerMatthew McClintock <msm@freescale.com>
Mon, 12 Mar 2012 20:33:28 +0000 (15:33 -0500)
Signed-off-by: Matthew McClintock <msm@freescale.com>
meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc
meta-fsl-ppc/recipes-kernel/u-boot/u-boot_git.bb

index 06896eea309f0b6653bea7c32519058b2182d788..4d6fc3a7d5d98f4d8480a2d320797710d57f2472 100644 (file)
@@ -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)"
index af5343fff5cadaef0bc3c930036f4f244feac42d..43fc2def21a5a0f1182e20c321e219448302f4d8 100644 (file)
@@ -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 = 
+ALLOW_EMPTY = "1"