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:
parent
b178fc2369
commit
8005640201
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ for example libraries only needed for the tests."
|
||||||
(find-files dir elf-pred))
|
(find-files dir elf-pred))
|
||||||
existing-elf-dirs))))
|
existing-elf-dirs))))
|
||||||
(for-each (lambda (elf-file)
|
(for-each (lambda (elf-file)
|
||||||
(system* "patchelf" "--shrink-rpath" elf-file)
|
(strip-runpath elf-file)
|
||||||
(handle-file elf-file elf-list))
|
(handle-file elf-file elf-list))
|
||||||
elf-list)))))
|
elf-list)))))
|
||||||
(for-each handle-output outputs)
|
(for-each handle-output outputs)
|
||||||
|
|
Reference in a new issue