mirror of
https://github.com/jiazhang0/meta-secure-core.git
synced 2026-07-16 20:56:58 +00:00
meta-secure-core: fix wrong operator combination
Operations like XXX:append += "YYY" are almost always wrong and this is a common mistake made in the metadata. Improve them to use the standard format. Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
This commit is contained in:
@@ -24,7 +24,7 @@ LAYERRECOMMENDS_integrity = "\
|
||||
tpm \
|
||||
"
|
||||
|
||||
BB_HASHBASE_WHITELIST:append += "\
|
||||
BB_HASHBASE_WHITELIST:append = " \
|
||||
RPM_FSK_PATH \
|
||||
"
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CFLAGS:remove += "-pie -fpie"
|
||||
CFLAGS:remove = "-pie -fpie"
|
||||
|
||||
# We need -no-pie in case the default is to generate pie code.
|
||||
#
|
||||
|
||||
@@ -5,7 +5,7 @@ PACKAGECONFIG:append = " \
|
||||
"
|
||||
|
||||
# IMA signing support is provided by RPM plugin.
|
||||
EXTRA_OECONF:remove += "\
|
||||
EXTRA_OECONF:remove = "\
|
||||
--disable-plugins \
|
||||
"
|
||||
EXTRA_OECONF:append:class-native = " --disable-inhibit-plugin --with-audit=no"
|
||||
|
||||
Reference in New Issue
Block a user