mirror of
https://git.yoctoproject.org/meta-security
synced 2026-06-01 13:10:33 +00:00
apparmor: make bash dependency optional
Bash is only needed by one not particularly important script, so not requiring bash is a useful option for builds that cannot have gpl3 components. Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
committed by
Armin Kuster
parent
e2612dd58d
commit
400eade386
@@ -32,11 +32,12 @@ PARALLEL_MAKE = ""
|
|||||||
|
|
||||||
inherit pkgconfig autotools-brokensep update-rc.d python3native perlnative ptest cpan manpages systemd
|
inherit pkgconfig autotools-brokensep update-rc.d python3native perlnative ptest cpan manpages systemd
|
||||||
|
|
||||||
PACKAGECONFIG ??= "python perl"
|
PACKAGECONFIG ??= "python perl aa-decode"
|
||||||
PACKAGECONFIG[manpages] = "--enable-man-pages, --disable-man-pages"
|
PACKAGECONFIG[manpages] = "--enable-man-pages, --disable-man-pages"
|
||||||
PACKAGECONFIG[python] = "--with-python, --without-python, python3 swig-native"
|
PACKAGECONFIG[python] = "--with-python, --without-python, python3 swig-native"
|
||||||
PACKAGECONFIG[perl] = "--with-perl, --without-perl, perl perl-native swig-native"
|
PACKAGECONFIG[perl] = "--with-perl, --without-perl, perl perl-native swig-native"
|
||||||
PACKAGECONFIG[apache2] = ",,apache2,"
|
PACKAGECONFIG[apache2] = ",,apache2,"
|
||||||
|
PACKAGECONFIG[aa-decode] = ",,,bash"
|
||||||
|
|
||||||
PAMLIB="${@bb.utils.contains('DISTRO_FEATURES', 'pam', '1', '0', d)}"
|
PAMLIB="${@bb.utils.contains('DISTRO_FEATURES', 'pam', '1', '0', d)}"
|
||||||
HTTPD="${@bb.utils.contains('PACKAGECONFIG', 'apache2', '1', '0', d)}"
|
HTTPD="${@bb.utils.contains('PACKAGECONFIG', 'apache2', '1', '0', d)}"
|
||||||
@@ -97,6 +98,10 @@ do_install () {
|
|||||||
rm -f ${D}${sbindir}/aa-notify
|
rm -f ${D}${sbindir}/aa-notify
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if ! ${@bb.utils.contains('PACKAGECONFIG','aa-decode','true','false', d)}; then
|
||||||
|
rm -f ${D}${sbindir}/aa-decode
|
||||||
|
fi
|
||||||
|
|
||||||
if test -z "${HTTPD}" ; then
|
if test -z "${HTTPD}" ; then
|
||||||
oe_runmake -C ${B}/changehat/mod_apparmor DESTDIR="${D}" install
|
oe_runmake -C ${B}/changehat/mod_apparmor DESTDIR="${D}" install
|
||||||
fi
|
fi
|
||||||
@@ -161,7 +166,6 @@ PACKAGES += "mod-${PN}"
|
|||||||
FILES_${PN} += "/lib/apparmor/ ${sysconfdir}/apparmor ${PYTHON_SITEPACKAGES_DIR}"
|
FILES_${PN} += "/lib/apparmor/ ${sysconfdir}/apparmor ${PYTHON_SITEPACKAGES_DIR}"
|
||||||
FILES_mod-${PN} = "${libdir}/apache2/modules/*"
|
FILES_mod-${PN} = "${libdir}/apache2/modules/*"
|
||||||
|
|
||||||
RDEPENDS_${PN} += "bash"
|
|
||||||
RDEPENDS_${PN} += "${@bb.utils.contains('PACKAGECONFIG','python','python3-core python3-modules','', d)}"
|
RDEPENDS_${PN} += "${@bb.utils.contains('PACKAGECONFIG','python','python3-core python3-modules','', d)}"
|
||||||
RDEPENDS_${PN}_remove += "${@bb.utils.contains('PACKAGECONFIG','perl','','perl', d)}"
|
RDEPENDS_${PN}_remove += "${@bb.utils.contains('PACKAGECONFIG','perl','','perl', d)}"
|
||||||
RDEPENDS_${PN}-ptest += "perl coreutils dbus-lib bash"
|
RDEPENDS_${PN}-ptest += "perl coreutils dbus-lib bash"
|
||||||
|
|||||||
Reference in New Issue
Block a user