27 lines
1.2 KiB
Diff
27 lines
1.2 KiB
Diff
From ace69722a5e67a453471d90482e3f4407390f842 Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Fri, 21 May 2021 23:03:54 +0200
|
|
Subject: [PATCH 16/N] Use msys tools
|
|
|
|
Some of the external tools pacman uses might unfortunately have incompatible
|
|
versions in PATH, e.g. when using makepkg-mingw. Let's always invoke them using
|
|
absolute paths. Most of the patching is currently done in
|
|
0000-pacman-msysize.patch, these are just some new occurrences. Ideally these
|
|
PATH guards will be a completely separate patch in the future.
|
|
---
|
|
scripts/libmakepkg/meson.build | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/scripts/libmakepkg/meson.build b/scripts/libmakepkg/meson.build
|
|
index 50eb905..9396923 100644
|
|
--- a/scripts/libmakepkg/meson.build
|
|
+++ b/scripts/libmakepkg/meson.build
|
|
@@ -8,6 +8,7 @@ libmakepkg_modules = [
|
|
{ 'name' : 'reproducible', 'has_subdir' : true },
|
|
{ 'name' : 'source', 'has_subdir' : true },
|
|
{ 'name' : 'srcinfo', },
|
|
+ { 'name' : 'utils_fixed_path', },
|
|
{ 'name' : 'tidy', 'has_subdir' : true },
|
|
{ 'name' : 'util', 'has_subdir' : true },
|
|
]
|