mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 13:36:36 +01:00
build-system/gnu: Really apply patches.
* guix/build/gnu-build-system.scm (patch): Use `--input FILE', not just `FILE'.
This commit is contained in:
parent
8197c978ef
commit
d118c548b5
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ (define* (patch #:key (patches '()) (patch-flags '("--batch" "-p1"))
|
|||
(every (lambda (p)
|
||||
(format #t "applying patch `~a'~%" p)
|
||||
(zero? (apply system* "patch"
|
||||
(append patch-flags (list p)))))
|
||||
(append patch-flags (list "--input" p)))))
|
||||
patches))
|
||||
|
||||
(define* (configure #:key outputs (configure-flags '()) out-of-source?
|
||||
|
|
Loading…
Reference in a new issue