package/selinux-python: fix dependency
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Tue, 21 Apr 2020 14:53:15 +0000 (16:53 +0200)
committerYann E. MORIN <yann.morin.1998@free.fr>
Tue, 21 Apr 2020 17:00:39 +0000 (19:00 +0200)
Commit 791292c48d5165515ca08f35d8cbc1ef78d3ed95 forgot to add
!BR2_PACKAGE_PYTHON dependency, without it the following error will be
raised if the user selects BR2_PACKAGE_PYTHON and python-selinux:

WARNING: unmet direct dependencies detected for BR2_PACKAGE_PYTHON3
  Depends on [n]: !BR2_PACKAGE_PYTHON [=y] && BR2_USE_WCHAR [=y] && BR2_USE_MMU [=y] && BR2_TOOLCHAIN_HAS_THREADS [=y] && !BR2_STATIC_LIBS [=n]
  Selected by [y]:
  - BR2_PACKAGE_SELINUX_PYTHON [=y] && BR2_USE_MMU [=y] && BR2_USE_WCHAR [=y] && BR2_TOOLCHAIN_HAS_THREADS [=y] && !BR2_STATIC_LIBS [=n]

Fixes:
 - No autobuilder failures yet

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[yann.morin.1998@free.fr: add dependency on MMU]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
package/selinux-python/Config.in

index 1a610b29f037e90cc21823ccd3262dc825b714b5..0f1c281777e91490909ccf045362f4c98a56d81f 100644 (file)
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_SELINUX_PYTHON
        bool "selinux-python"
+       depends on !BR2_PACKAGE_PYTHON
        depends on BR2_USE_MMU
        depends on BR2_USE_WCHAR
        depends on BR2_TOOLCHAIN_HAS_THREADS
@@ -37,6 +38,10 @@ config BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
 
 endif
 
+comment "selinux-python needs python3"
+       depends on BR2_USE_MMU
+       depends on BR2_PACKAGE_PYTHON
+
 comment "selinux-python packages needs a toolchain w/ wchar, threads, dynamic library"
        depends on BR2_USE_MMU
        depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \