apteryx pushed a commit to branch core-updates
in repository guix.

commit ca080b3efb726a4d63838f1eeaf2036a6c2d8dad
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Thu Nov 5 23:08:39 2020 -0500

    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.
---
 guix/build/meson-build-system.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/build/meson-build-system.scm 
b/guix/build/meson-build-system.scm
index 8043a84..cc2ba83 100644
--- a/guix/build/meson-build-system.scm
+++ b/guix/build/meson-build-system.scm
@@ -100,7 +100,7 @@ for example libraries only needed for the tests."
                                             (find-files dir elf-pred))
                                           existing-elf-dirs))))
          (for-each strip-runpath elf-list)))))
-  (for-each handle-output outputs)
+  (for-each handle-output (alist-delete "debug" outputs))
   #t)
 
 (define %standard-phases

Reply via email to