build-system/meson: Do not apply strip-runpath to the "debug" output.
Because the debug files are read-only, the strip-runpath procedure would throw an exception when attempting to open them. * guix/build/meson-build-system.scm (shrink-runpath): Remove "debug" from the list of outputs to be processed.master
parent
4b0e0578a7
commit
ca080b3efb
|
@ -100,7 +100,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 strip-runpath elf-list)))))
|
(for-each strip-runpath elf-list)))))
|
||||||
(for-each handle-output outputs)
|
(for-each handle-output (alist-delete "debug" outputs))
|
||||||
#t)
|
#t)
|
||||||
|
|
||||||
(define %standard-phases
|
(define %standard-phases
|
||||||
|
|
Reference in New Issue