diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-06-24 23:17:46 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-06-25 11:59:32 +0200 |
commit | 7aee2f5709692ab503f0770d5f2d12e0e3a9460d (patch) | |
tree | 366f835735d789e129ffc0386670fb90da841a0c /gnu/packages/virtualization.scm | |
parent | 488f4e3bde4131a266164f7e850127095d6d074f (diff) | |
download | patches-7aee2f5709692ab503f0770d5f2d12e0e3a9460d.tar patches-7aee2f5709692ab503f0770d5f2d12e0e3a9460d.tar.gz |
gnu: libvirt: Honour MAKE-FLAGS everywhere.
* gnu/packages/virtualization.scm (libvirt)[arguments]: Apply MAKE-FLAGS
in ‘install’ phase.
Diffstat (limited to 'gnu/packages/virtualization.scm')
-rw-r--r-- | gnu/packages/virtualization.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index 87839490b2..85bd38b8bb 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -435,10 +435,11 @@ manage system or application containers.") ;; Since the sysconfdir and localstatedir should be /etc and /var ;; at runtime, we must prevent writing to them at installation ;; time. - (lambda _ - (invoke "make" "install" - "sysconfdir=/tmp/etc" - "localstatedir=/tmp/var"))) + (lambda* (#:key make-flags #:allow-other-keys) + (apply invoke "make" "install" + "sysconfdir=/tmp/etc" + "localstatedir=/tmp/var" + make-flags))) (add-after 'install 'wrap-libvirtd (lambda* (#:key inputs outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) |