diff options
author | Alexandros Theodotou <[email protected]> | 2020-09-10 02:45:43 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2020-09-10 11:57:11 +0200 |
commit | 1bec03df9b60f156c657a64a323ef27f4ed14b44 (patch) | |
tree | 155d585e2ca04ac791ad1422f89089801a9e4ed6 /gnu/packages/patches/meson-for-build-rpath.patch | |
parent | 24ce6e27bffd0f5574924d53a289743fa944c16a (diff) |
gnu: meson: Update to 0.55.1.
* gnu/packages/build-tools.scm (meson): Update to 0.55.1.
* gnu/packages/patches/meson-for-build-rpath.patch: Remove.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
Signed-off-by: Ludovic Courtès <[email protected]>
Diffstat (limited to 'gnu/packages/patches/meson-for-build-rpath.patch')
-rw-r--r-- | gnu/packages/patches/meson-for-build-rpath.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gnu/packages/patches/meson-for-build-rpath.patch b/gnu/packages/patches/meson-for-build-rpath.patch deleted file mode 100644 index ef9a73f07c..0000000000 --- a/gnu/packages/patches/meson-for-build-rpath.patch +++ /dev/null @@ -1,24 +0,0 @@ -This patch removes a part of meson that clears the rpath upon installation. -This will only be applied to a special version of meson, used for the -meson-build-system. - -Original patch for Meson 0.42.0 by Peter Mikkelsen <[email protected]> - ---- meson-0.47.1/mesonbuild/minstall.py.old 2018-08-10 11:01:27.812327013 +0200 -+++ meson-0.47.1/mesonbuild/minstall.py 2018-08-10 11:01:51.940368505 +0200 -@@ -436,15 +436,6 @@ - print("Symlink creation does not work on this platform. " - "Skipping all symlinking.") - printed_symlink_error = True -- if os.path.isfile(outname): -- try: -- depfixer.fix_rpath(outname, install_rpath, final_path, -- install_name_mappings, verbose=False) -- except SystemExit as e: -- if isinstance(e.code, int) and e.code == 0: -- pass -- else: -- raise - - def run(args): - parser = buildparser() |