diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-26 12:45:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-26 12:50:36 +0000 |
commit | 30253358f5e76fb7b25be27198b4c125e0dbdf2c (patch) | |
tree | c85e2103f06d7e15f09dd9612a48ce2289954712 /meta/classes | |
parent | 8f72d9e4ecf495646af3c5cebe7f08ca01bbbb99 (diff) | |
download | openembedded-core-30253358f5e76fb7b25be27198b4c125e0dbdf2c.tar.gz openembedded-core-30253358f5e76fb7b25be27198b4c125e0dbdf2c.tar.bz2 openembedded-core-30253358f5e76fb7b25be27198b4c125e0dbdf2c.zip |
Quoting fixes
We have various variables which are either not quoted at all or are half
quoted. This patch fixes the bad exmaples so everything is consistent.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/staging.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index 66314a7ba8..a98f51deb5 100644 --- a/meta/classes/staging.bbclass +++ b/meta/classes/staging.bbclass @@ -58,7 +58,7 @@ sysroot_stage_all() { } do_populate_sysroot[dirs] = "${SYSROOT_DESTDIR}" -do_populate_sysroot[umask] = 022 +do_populate_sysroot[umask] = "022" addtask populate_sysroot after do_install |