mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-08 10:14:26 +02:00
29 lines
930 B
Diff
29 lines
930 B
Diff
Patch-Source: https://github.com/ebassi/graphene/pull/248
|
|
From 85289fa63b1a5e4e5a03a79b947d1db5b9ec4778 Mon Sep 17 00:00:00 2001
|
|
From: psykose <alice@ayaya.dev>
|
|
Date: Thu, 7 Apr 2022 19:01:49 +0000
|
|
Subject: [PATCH] meson: don't install introspection file with
|
|
installed_tests=false
|
|
|
|
---
|
|
tests/meson.build | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/meson.build b/tests/meson.build
|
|
index 0a6a355..0120c29 100644
|
|
--- a/tests/meson.build
|
|
+++ b/tests/meson.build
|
|
@@ -67,7 +67,9 @@ src_build_path = meson.current_build_dir() / '../src'
|
|
|
|
if build_gir and host_system == 'linux' and not meson.is_cross_build()
|
|
foreach unit: ['introspection.py']
|
|
- install_data(unit, install_dir: installed_test_bindir)
|
|
+ if get_option('installed_tests')
|
|
+ install_data(unit, install_dir: installed_test_bindir)
|
|
+ endif
|
|
|
|
wrapper = '@0@.test'.format(unit)
|
|
custom_target(wrapper,
|
|
--
|
|
2.35.1
|
|
|