1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Boyuan Yang <byang@debian.org>
Date: Sun, 20 Apr 2025 15:43:33 -0400
Subject: persepolis/meson.build: Use 755 not 555 for installed script
permission
This is needed for the new dh-python tool to rewrite shebang.
Bug-Debian: https://bugs.debian.org/1103630
Forwarded: no
---
persepolis/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/persepolis/meson.build b/persepolis/meson.build
index 270b3c5..00cffd9 100644
--- a/persepolis/meson.build
+++ b/persepolis/meson.build
@@ -76,5 +76,5 @@ configure_file(
configuration: conf,
install: true,
install_dir: get_option('bindir'),
- install_mode: 'r-xr-xr-x'
+ install_mode: 'rwxr-xr-x'
)
|