diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-18 09:24:38 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-18 09:24:38 +0100 |
commit | 1610200e7863a73dafac7890bc339bea47605c05 (patch) | |
tree | 24ddc7e452b318e8e07402245c6f91b56f3ab78a /package/selinux-python | |
parent | 2277fdeca8c94f8ea8fe8afebcdbb176c6b1531d (diff) | |
download | buildroot-1610200e7863a73dafac7890bc339bea47605c05.tar.gz buildroot-1610200e7863a73dafac7890bc339bea47605c05.zip |
package/*/Config.in: fix property order warning of check-package
This commit fixes the ordering of the Config.in option properties, as
reported by check-package.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/selinux-python')
-rw-r--r-- | package/selinux-python/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/selinux-python/Config.in b/package/selinux-python/Config.in index e453450264..b9fab9aaa1 100644 --- a/package/selinux-python/Config.in +++ b/package/selinux-python/Config.in @@ -1,10 +1,10 @@ menuconfig BR2_PACKAGE_SELINUX_PYTHON bool "selinux-python" - select BR2_PACKAGE_PYTHON3 if !BR2_PACKAGE_PYTHON depends on BR2_USE_MMU depends on BR2_USE_WCHAR depends on BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_STATIC_LIBS + select BR2_PACKAGE_PYTHON3 if !BR2_PACKAGE_PYTHON help A set of SELinux tools written in python that help with managing a system with SELinux enabled. If no packages are |