Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
22 lines
901 B
Diff
22 lines
901 B
Diff
From 7d1ef4343ed5b2b7ab51469177a42c32c47f0528 Mon Sep 17 00:00:00 2001
|
|
From: Rosen Penev <rosenp@gmail.com>
|
|
Date: Tue, 6 Sep 2022 01:36:17 -0700
|
|
Subject: [PATCH] minstall: handle extra error for selinuxenabled
|
|
|
|
Microsoft's WSL2 uses a Plan 9 filesystem, which returns IOError when file is missing.
|
|
---
|
|
mesonbuild/minstall.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/mesonbuild/minstall.py
|
|
+++ b/mesonbuild/minstall.py
|
|
@@ -229,7 +229,7 @@ def restore_selinux_contexts() -> None:
|
|
'''
|
|
try:
|
|
subprocess.check_call(['selinuxenabled'])
|
|
- except (FileNotFoundError, NotADirectoryError, PermissionError, subprocess.CalledProcessError):
|
|
+ except (FileNotFoundError, NotADirectoryError, OSError, PermissionError, subprocess.CalledProcessError):
|
|
# If we don't have selinux or selinuxenabled returned 1, failure
|
|
# is ignored quietly.
|
|
return
|