mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-18 04:02:30 +02:00
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From 5941b2a3cdf6a5c1d1a3339f9fa61fb462ba60be Mon Sep 17 00:00:00 2001
|
|
From: Cathy Hu <cahu@suse.de>
|
|
Date: Mon, 16 Feb 2026 17:07:34 +0100
|
|
Subject: [PATCH] Disable build isolation for sepolicy python module
|
|
|
|
same justification as:
|
|
https://github.com/SELinuxProject/selinux/commit/17a9372391ad2c9bf0e440391d6fd13cb8cfdaf3
|
|
|
|
Used patch by Daniel Garcia <daniel.garcia@suse.com>:
|
|
https://build.opensuse.org/requests/1333291
|
|
|
|
Signed-off-by: Cathy Hu <cahu@suse.de>
|
|
Acked-by: Stephen Smalley <stephen.smalley.work@gmail.com>
|
|
---
|
|
python/sepolicy/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/python/sepolicy/Makefile b/python/sepolicy/Makefile
|
|
index 1a26cfdce6..ccb22fe7da 100644
|
|
--- a/sepolicy/Makefile
|
|
+++ b/sepolicy/Makefile
|
|
@@ -27,7 +27,7 @@ test:
|
|
@$(PYTHON) test_sepolicy.py -v
|
|
|
|
install:
|
|
- $(PYTHON) -m pip install --prefix=$(PREFIX) `test -n "$(DESTDIR)" && echo --root $(DESTDIR) --ignore-installed --no-deps` $(PYTHON_SETUP_ARGS) .
|
|
+ $(PYTHON) -m pip install --no-build-isolation --prefix=$(PREFIX) `test -n "$(DESTDIR)" && echo --root $(DESTDIR) --ignore-installed --no-deps` $(PYTHON_SETUP_ARGS) .
|
|
[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
|
|
install -m 755 sepolicy.py $(DESTDIR)$(BINDIR)/sepolicy
|
|
(cd $(DESTDIR)$(BINDIR); ln -sf sepolicy sepolgen)
|