build-system/meson: Use 'strip-runpath' instead of PatchELF.

* guix/build/meson-build-system.scm (fix-runpath): Call 'strip-runpath'
instead of invoking 'patchelf'.
This commit is contained in:
Ludovic Courtès 2018-04-18 18:31:28 +02:00
parent b178fc2369
commit 8005640201
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -135,7 +135,7 @@ for example libraries only needed for the tests."
(find-files dir elf-pred))
existing-elf-dirs))))
(for-each (lambda (elf-file)
(system* "patchelf" "--shrink-rpath" elf-file)
(strip-runpath elf-file)
(handle-file elf-file elf-list))
elf-list)))))
(for-each handle-output outputs)