Files
MSYS2-packages/pacman/0018-use-msys-tools.patch
David Macek b8550f92e6 pacman: Switch to meson build (#1951)
Everything seems fine except:
- libalpm.pc now contains:
    /usr/lib/gcc/x86_64-pc-msys/9.3.0/../../../../lib/libintl.a
2020-05-20 08:36:22 +03:00

17 lines
871 B
Diff

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.
--- pacman-5.2.1/scripts/libmakepkg/meson.build 2019-08-12 03:26:42.000000000 +0200
+++ pacman-5.2.1/scripts/libmakepkg/meson.build 2020-05-16 19:25:47.447523000 +0200
@@ -7,6 +7,7 @@
{ 'name' : 'lint_pkgbuild', 'has_subdir' : true },
{ 'name' : 'source', 'has_subdir' : true },
{ 'name' : 'srcinfo', },
+ { 'name' : 'utils_fixed_path', },
{ 'name' : 'tidy', 'has_subdir' : true },
{ 'name' : 'util', 'has_subdir' : true },
]