me
/
guix
Archived
1
0
Fork 0

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
Maxim Cournoyer 2020-11-05 23:08:39 -05:00
parent 4b0e0578a7
commit ca080b3efb
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 1 additions and 1 deletions

View File

@ -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