diff options
| author | Ludovic Courtès | 2012-09-01 15:43:46 +0200 |
|---|---|---|
| committer | Ludovic Courtès | 2012-09-01 19:21:33 +0200 |
| commit | d118c548b5779fe136da03bd732bef2294618b97 (patch) | |
| tree | 045f7ffd9007a42833e944b8f3e32bc95a9ddaf4 | |
| parent | 8197c978efb3fff61db42e80dd7358e7ee15bf20 (diff) | |
build-system/gnu: Really apply patches.
* guix/build/gnu-build-system.scm (patch): Use `--input FILE', not just
`FILE'.
| -rw-r--r-- | guix/build/gnu-build-system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/gnu-build-system.scm b/guix/build/gnu-build-system.scm index 763665590..c57bc60d2 100644 --- a/guix/build/gnu-build-system.scm +++ b/guix/build/gnu-build-system.scm @@ -91,7 +91,7 @@ (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? |