summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index fbb7711b6..2137a7b87 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -7253,7 +7253,10 @@ settings.lock()
if 'selinux' in settings["USE"].split(" "):
try:
import selinux
- selinux_enabled=1
+ if hasattr(selinux, "enabled"):
+ selinux_enabled = selinux.enabled
+ else:
+ selinux_enabled = 1
except OSError, e:
writemsg(red("!!! SELinux not loaded: ")+str(e)+"\n")
selinux_enabled=0