diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-06-18 13:50:33 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-06-18 13:51:28 +0200 |
commit | 32eb44240db23b2320a68a3ab17370531945587f (patch) | |
tree | e79bf2e468740be243b8caf97a5e5aa04c01df22 | |
parent | d06352d9dcd139c9a4f053d7dd70cc8dd79d074f (diff) | |
download | guix-32eb44240db23b2320a68a3ab17370531945587f.tar guix-32eb44240db23b2320a68a3ab17370531945587f.tar.gz |
build-system/r: Accept #:r argument.
* guix/build-system/r.scm (lower): Add #:r to private-keywords.
-rw-r--r-- | guix/build-system/r.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/build-system/r.scm b/guix/build-system/r.scm index d20f66e1a9..d5f897932f 100644 --- a/guix/build-system/r.scm +++ b/guix/build-system/r.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2017 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -74,7 +74,7 @@ release corresponding to NAME and VERSION." #:rest arguments) "Return a bag for NAME." (define private-keywords - '(#:source #:target #:inputs #:native-inputs)) + '(#:source #:target #:r #:inputs #:native-inputs)) (and (not target) ;XXX: no cross-compilation (bag |