build/gnu: Ensure the files are writable after the unpack phase.
Fixes <https://issues.guix.gnu.org/43015>. * guix/build/gnu-build-system.scm (unpack): Call 'make-file-writable' on every source file.master
parent
337a94e534
commit
6129ebddbd
|
@ -170,7 +170,8 @@ working directory."
|
|||
(when command
|
||||
(invoke command "--decompress" name)))))
|
||||
;; Attempt to change into child directory.
|
||||
(and=> (first-subdirectory ".") chdir))))
|
||||
(and=> (first-subdirectory ".") chdir)))
|
||||
(for-each make-file-writable (find-files ".")))
|
||||
|
||||
(define* (bootstrap #:key bootstrap-scripts
|
||||
#:allow-other-keys)
|
||||
|
|
Reference in New Issue