]> code.ossystems Code Review - openembedded-core.git/commitdiff
build-appliance-image: Fix incorrect PATH
authorJuro Bystricky <juro.bystricky@intel.com>
Fri, 28 Oct 2016 22:14:56 +0000 (15:14 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 6 Nov 2016 23:35:14 +0000 (23:35 +0000)
When modifying the PATH variable in .bashrc, double quote characters
were used, resulting in expanding the variable $PATH with the value of
PATH of the system building the Build Appliance.

The original intent was to enter an un-expanded (literal) $PATH.
In order to that, one must use single quotes instead of double quotes.

[YOCTO#10434] [YOCTO#10504]

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-core/images/build-appliance-image_15.0.0.bb

index 9d898b43638b0db14942c6efa4a7a766fe1c4826..5bb655530bcff3d87a38964774c28da176dc633b 100644 (file)
@@ -63,7 +63,7 @@ fakeroot do_populate_poky_src () {
        # Also save (for reference only) the actual SRCREV used to create this image
        echo "export BA_SRCREV=${SRCREV}" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
        echo "" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
-       echo "export PATH=$PATH:/sbin" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
+       echo 'export PATH=$PATH:/sbin' >> ${IMAGE_ROOTFS}/home/builder/.bashrc
        echo "" >> ${IMAGE_ROOTFS}/home/builder/.bashrc
 
        echo "# If working behind a proxy and using the provided oe-git-proxy script" >> ${IMAGE_ROOTFS}/home/builder/.bashrc