1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
From: Arnaud Ferraris <arnaud.ferraris@collabora.com>
Date: Tue, 26 Sep 2023 12:50:17 +0200
Subject: build: don't install run script
It is installed to a non-standard location and doesn't provide any
benefit to the user.
Forwarded: not-needed, Debian-specific change
---
meson.build | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/meson.build b/meson.build
index d69a418..b482fb7 100644
--- a/meson.build
+++ b/meson.build
@@ -54,14 +54,14 @@ subdir('data')
subdir('src')
subdir('po')
-install_data(
- configure_file(
- input: 'install/ticketbooth-run-script.in',
- output: 'ticketbooth-run-script',
- configuration: conf
- ),
- install_dir: join_paths(get_option('prefix'), meson.project_name())
-)
+# install_data(
+# configure_file(
+# input: 'install/ticketbooth-run-script.in',
+# output: 'ticketbooth-run-script',
+# configuration: conf
+# ),
+# install_dir: join_paths(get_option('prefix'), meson.project_name())
+# )
gnome.post_install(
glib_compile_schemas: true,
|