Fix SepolicySplit soong variable

It should be "filtered" by "true" because all non-empty values become
true when using add_json_bool.

Test: m selinux_policy on sc-arc
Change-Id: I35d5881d83746230793cf8ced76885607e82334a
This commit is contained in:
Inseob Kim 2021-03-23 20:47:39 +09:00
parent ebb3176268
commit 35f63019c9

View file

@ -260,7 +260,7 @@ $(call add_json_bool, RequiresInsecureExecmemForSwiftshader, $(PRODUCT_REQUIRES_
$(call add_json_bool, SelinuxIgnoreNeverallows, $(SELINUX_IGNORE_NEVERALLOWS))
$(call add_json_bool, SepolicySplit, $(PRODUCT_SEPOLICY_SPLIT))
$(call add_json_bool, SepolicySplit, $(filter true,$(PRODUCT_SEPOLICY_SPLIT)))
$(call json_end)