diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2004-12-06 03:40:43 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2004-12-06 03:40:43 +0000 |
commit | 5790b96630f7f14ea052fd2f1933dbebd0f48a14 (patch) | |
tree | 0d41c187438622f05407ef373bd5a0a8db88de2c /eclass | |
parent | Added ~sparc keyword. (Manifest recommit) (diff) | |
download | gentoo-2-5790b96630f7f14ea052fd2f1933dbebd0f48a14.tar.gz gentoo-2-5790b96630f7f14ea052fd2f1933dbebd0f48a14.tar.bz2 gentoo-2-5790b96630f7f14ea052fd2f1933dbebd0f48a14.zip |
add TEMISC and FCMISC
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/selinux-policy.eclass | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/eclass/selinux-policy.eclass b/eclass/selinux-policy.eclass index 43d51c2ae21f..fd6a267929ed 100644 --- a/eclass/selinux-policy.eclass +++ b/eclass/selinux-policy.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/selinux-policy.eclass,v 1.12 2004/10/08 01:36:47 pebenito Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/selinux-policy.eclass,v 1.13 2004/12/06 03:40:43 pebenito Exp $ # Eclass for installing SELinux policy, and optionally # reloading the policy @@ -49,12 +49,24 @@ selinux-policy_src_install() { doins ${TEFILES} || die fi + if [ -n "${TEMISC}" ]; then + debug-print "TEMISC is \"${TEMISC}\"" + insinto ${POLICYDIR}/domains/misc + doins ${TEMISC} || die + fi + if [ -n "${FCFILES}" ]; then debug-print "FCFILES is \"${FCFILES}\"" insinto ${POLICYDIR}/file_contexts/program doins ${FCFILES} || die fi + if [ -n "${FCMISC}" ]; then + debug-print "FCMISC is \"${FCMISC}\"" + insinto ${POLICYDIR}/file_contexts/misc + doins ${FCMISC} || die + fi + if [ -n "${MACROS}" ]; then debug-print "MACROS is \"${MACROS}\"" insinto ${POLICYDIR}/macros/program |