File: 0001-persepolis-meson.build-Use-755-not-555-for-installed.patch

package info (click to toggle)
persepolis 5.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 8,328 kB
  • sloc: python: 70,640; xml: 50; sh: 34; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 686 bytes parent folder | download | duplicates (2)
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'
 )