package/rpm: add python support

When Python 3 support is detected, enable Python 3-related support.

Signed-off-by: James Knight <james.d.knight@live.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
James Knight 2023-05-07 17:34:32 -04:00 committed by Yann E. MORIN
parent 233be1c216
commit 38c4621df3

View File

@ -27,7 +27,6 @@ RPM_SELINUX_MODULES = rpm
# --enable-openmp is provided and OpenMP is < 4.5:
# https://github.com/rpm-software-management/rpm/pull/1433
RPM_CONF_OPTS = \
--disable-python \
--disable-rpath \
--with-gnu-ld \
--without-fapolicyd \
@ -83,6 +82,13 @@ else
RPM_CONF_OPTS += --without-selinux
endif
ifeq ($(BR2_PACKAGE_PYTHON3),y)
RPM_DEPENDENCIES += python3
RPM_CONF_OPTS += --enable-python
else
RPM_CONF_OPTS += --disable-python
endif
ifeq ($(BR2_PACKAGE_SQLITE),y)
RPM_DEPENDENCIES += sqlite
RPM_CONF_OPTS += --enable-sqlite