summaryrefslogtreecommitdiff
path: root/jenkins_common_lib
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2013-12-21 19:51:56 +0200
committerFathi Boudra <fathi.boudra@linaro.org>2013-12-21 19:51:56 +0200
commit73ca8e44aa1ec3197fcaa243fb5cc13f8d0a4294 (patch)
tree949da9ec0497a99cd4a8c2b2dffe3e04f8981ca8 /jenkins_common_lib
parent4cebc862f7b3dddb94af70cd9ffe000b1b587ab6 (diff)
Fix bootwrapper build when ccache is enabled: escape CROSS_COMPILE
Diffstat (limited to 'jenkins_common_lib')
-rwxr-xr-xjenkins_common_lib4
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins_common_lib b/jenkins_common_lib
index ee83934..ccb63a2 100755
--- a/jenkins_common_lib
+++ b/jenkins_common_lib
@@ -147,13 +147,13 @@ build_instructions()
BOOTARGS_COMMON="console=ttyAMA0 earlyprintk=pl011,0x1c090000 consolelog=9 rw"
make IMAGE=img-foundation.axf FDT_SRC=foundation-v8.dts clean
make DTC=${WORKSPACE}/${pkg_dir}/scripts/dtc/dtc \
- CROSS_COMPILE=${CROSS_COMPILE} \
+ CROSS_COMPILE="${CROSS_COMPILE}" \
IMAGE=img-foundation.axf \
FDT_SRC=foundation-v8.dts \
BOOTARGS='"${BOOTARGS_COMMON} root=/dev/vda2"'
make IMAGE=img.axf FDT_SRC=rtsm_ve-aemv8a.dts clean
make DTC=${WORKSPACE}/${pkg_dir}/scripts/dtc/dtc \
- CROSS_COMPILE=${CROSS_COMPILE} \
+ CROSS_COMPILE="${CROSS_COMPILE}" \
IMAGE=img.axf \
FDT_SRC=rtsm_ve-aemv8a.dts \
BOOTARGS='"${BOOTARGS_COMMON} root=/dev/mmcblk0p2"'