diff options
author | Kevin F. Haggerty <haggertk@lineageos.org> | 2018-09-07 10:31:56 -0600 |
---|---|---|
committer | Rashed Abdel-Tawab <rashed@linux.com> | 2018-09-07 13:54:22 -0400 |
commit | af7aea2bdb87eec4b401dcc200b2d4208faa2574 (patch) | |
tree | 8d58a242204e2d943c957488bd5e9868a9a6e0d8 | |
parent | 0b4526097e311d72d8206b44574b9150a82cb433 (diff) | |
download | android_device_qcom_sepolicy-legacy-af7aea2bdb87eec4b401dcc200b2d4208faa2574.tar.gz android_device_qcom_sepolicy-legacy-af7aea2bdb87eec4b401dcc200b2d4208faa2574.tar.bz2 android_device_qcom_sepolicy-legacy-af7aea2bdb87eec4b401dcc200b2d4208faa2574.zip |
sepol: Correct legacy sepolicy paths
Change-Id: I35fe10f6b7adc5be7bbb611c2b908721d9b3bb5d
-rw-r--r-- | sepolicy.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sepolicy.mk b/sepolicy.mk index 5f01964..4511aa0 100644 --- a/sepolicy.mk +++ b/sepolicy.mk @@ -1,23 +1,23 @@ # Board specific SELinux policy variable definitions BOARD_SEPOLICY_DIRS += \ - device/qcom/sepolicy/common \ - device/qcom/sepolicy/ssg \ - device/qcom/sepolicy/$(TARGET_BOARD_PLATFORM) + device/qcom/sepolicy-legacy/common \ + device/qcom/sepolicy-legacy/ssg \ + device/qcom/sepolicy-legacy/$(TARGET_BOARD_PLATFORM) ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT))) BOARD_SEPOLICY_DIRS += \ - device/qcom/sepolicy/test + device/qcom/sepolicy-legacy/test endif BOARD_PLAT_PUBLIC_SEPOLICY_DIR += \ - device/qcom/sepolicy/public + device/qcom/sepolicy-legacy/public BOARD_PLAT_PRIVATE_SEPOLICY_DIR += \ - device/qcom/sepolicy/private + device/qcom/sepolicy-legacy/private # Board specific SELinux policy variable definitions for legacy devices BOARD_SEPOLICY_DIRS += \ - device/qcom/sepolicy/legacy-common + device/qcom/sepolicy-legacy/legacy-common # Add sepolicy version to support OS upgrade and backward compatibility BOARD_SEPOLICY_VERS := $(PLATFORM_SDK_VERSION).0 |