diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2015-11-18 19:37:17 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-01 21:30:55 +0000 |
commit | 924ccf202a6d89de32fc34a140bf9e35e8e43b4e (patch) | |
tree | fc3b32023c3152320609aebef3920e2d53d5df87 /meta/conf/machine/include/tune-cortexm1.inc | |
parent | 4abf18a25ccb1a062a3775be1a70eaf6c155349c (diff) | |
download | openembedded-core-924ccf202a6d89de32fc34a140bf9e35e8e43b4e.tar.gz openembedded-core-924ccf202a6d89de32fc34a140bf9e35e8e43b4e.tar.bz2 openembedded-core-924ccf202a6d89de32fc34a140bf9e35e8e43b4e.zip |
meta/conf/machine: use ' inside quoted values
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/conf/machine/include/tune-cortexm1.inc')
-rw-r--r-- | meta/conf/machine/include/tune-cortexm1.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-cortexm1.inc b/meta/conf/machine/include/tune-cortexm1.inc index 3b652796d2..794152a409 100644 --- a/meta/conf/machine/include/tune-cortexm1.inc +++ b/meta/conf/machine/include/tune-cortexm1.inc @@ -3,7 +3,7 @@ DEFAULTTUNE ?= "armv7a" require conf/machine/include/arm/arch-armv7a.inc TUNEVALID[cortexm1] = "Enable Cortex-M1 specific processor optimizations" -TUNE_CCARGS .= "${@bb.utils.contains("TUNE_FEATURES", "cortexm1", " -mtune=cortex-m1", "", d)}" +TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexm1', ' -mtune=cortex-m1', '', d)}" AVAILTUNES += "cortexm1" ARMPKGARCH_tune-cortexm1 = "cortexm1" |