diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-07 14:54:08 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-11 12:18:12 -0500 |
commit | 802307fe6f6ce5cb89addc9ab25b5e488c443575 (patch) | |
tree | ba6766ab0f4c2142ca77f03ffe8374b6b8668e0b /gnu/local.mk | |
parent | 0136d815803632abdd7ffb743edab4017575ee92 (diff) | |
download | guix-802307fe6f6ce5cb89addc9ab25b5e488c443575.tar.gz |
gnu: meson: Patch to allow installing to independent prefixes.
Meson goes to lengths at preventing installation to directories outside of the main installation prefix. This isn't convenient or desirable in Guix; patch it out using a patch maintained by Nix. * gnu/packages/patches/meson-allow-dirs-outside-of-prefix.patch: Add patch. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/build-tools.scm (meson): Use it.
Diffstat (limited to 'gnu/local.mk')
-rw-r--r-- | gnu/local.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/local.mk b/gnu/local.mk index cd92b825a3..3952795c3b 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1468,6 +1468,7 @@ dist_patch_DATA = \ %D%/packages/patches/mesa-opencl-all-targets.patch \ %D%/packages/patches/mesa-skip-tests.patch \ %D%/packages/patches/mescc-tools-boot.patch \ + %D%/packages/patches/meson-allow-dirs-outside-of-prefix.patch \ %D%/packages/patches/metabat-fix-compilation.patch \ %D%/packages/patches/mhash-keygen-test-segfault.patch \ %D%/packages/patches/minetest-add-MINETEST_MOD_PATH.patch \ |