diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-01-25 16:28:03 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-01-26 22:19:16 +0100 |
commit | 5a64a791317d98171435eff541a835ab0d3f498c (patch) | |
tree | 16d7651fbd58003a8f810ad85fb2f29a37c88766 /guix/build/gnu-build-system.scm | |
parent | 14551e073f96d1d3add3eed3036f9eee6371a508 (diff) |
utils: Add helper method to make files writable.
* gnu/build/activation.scm (make-file-writable): Move this to ...
* guix/build/utils.scm (make-file-writable): ... here. Export it.
* guix/build/gnu-build-system.scm (strip): Use it.
Diffstat (limited to 'guix/build/gnu-build-system.scm')
-rw-r--r-- | guix/build/gnu-build-system.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/guix/build/gnu-build-system.scm b/guix/build/gnu-build-system.scm index 39ed1e4d4a..1786e2e3c9 100644 --- a/guix/build/gnu-build-system.scm +++ b/guix/build/gnu-build-system.scm @@ -392,8 +392,10 @@ makefiles." (and (or (elf-file? file) (ar-file? file)) (or (not debug-output) (make-debug-file file)) - ;; Ensure libraries are writable. - (chmod file #o755) + + ;; Ensure the file is writable. + (begin (make-file-writable file) #t) + (zero? (apply system* strip-command (append strip-flags (list file)))) (or (not debug-output) |