mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-17 22:15:17 +03:00
27 lines
736 B
Diff
27 lines
736 B
Diff
From b10a0126e26ba4329a677a2a2d245dff229249f5 Mon Sep 17 00:00:00 2001
|
|
From: knuxify <knuxify@gmail.com>
|
|
Date: Mon, 13 Feb 2023 06:50:34 +0100
|
|
Subject: [PATCH] Use system blueprint compiler
|
|
|
|
---
|
|
src/meson.build | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/meson.build b/src/meson.build
|
|
index 11fc2c1..fbca891 100644
|
|
--- a/src/meson.build
|
|
+++ b/src/meson.build
|
|
@@ -5,7 +5,9 @@ blueprint_compiler = find_program(
|
|
# Flatpak
|
|
'/app/bin/blueprint-compiler',
|
|
# host
|
|
- '../blueprint-compiler/blueprint-compiler.py'
|
|
+ '../blueprint-compiler/blueprint-compiler.py',
|
|
+ # host (installed on system)
|
|
+ '/usr/bin/blueprint-compiler'
|
|
)
|
|
|
|
gjspack = find_program('../troll/gjspack/bin/gjspack')
|
|
--
|
|
2.39.1
|
|
|