cairo/cairo-1.17.4-meson-trace.patch
2022-02-25 00:09:09 +00:00

33 lines
1.1 KiB
Diff

From ca478e03270868d9380f7372df25a0f3357430a4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= <tim@centricular.com>
Date: Tue, 9 Mar 2021 10:59:57 +0000
Subject: [PATCH] meson: make cairo-trace executable
Install with exec flag set and make sure tool is
executable in build directory as well (by making
the input file in the source directory executable).
Fixes #462
---
util/cairo-trace/cairo-trace.in | 0
util/cairo-trace/meson.build | 1 +
2 files changed, 1 insertion(+)
mode change 100644 => 100755 util/cairo-trace/cairo-trace.in
diff --git a/util/cairo-trace/cairo-trace.in b/util/cairo-trace/cairo-trace.in
old mode 100644
new mode 100755
diff --git a/util/cairo-trace/meson.build b/util/cairo-trace/meson.build
index e836f98cf..7048786eb 100644
--- a/util/cairo-trace/meson.build
+++ b/util/cairo-trace/meson.build
@@ -31,4 +31,5 @@ configure_file(input: 'cairo-trace.in',
configuration: trace_conf,
install: true,
install_dir: join_paths(get_option('prefix'), get_option('bindir')),
+ install_mode: 'rwxr-xr-x',
)
--
2.35.1