mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 01:11:55 -05:00
gnu: lxcfs: Fix build.
* gnu/packages/virtualization.scm (lxcfs)[arguments]: Replace the default 'bootstrap phase.
This commit is contained in:
parent
4cc5b2a44e
commit
856f91d9b3
1 changed files with 7 additions and 1 deletions
|
@ -1321,7 +1321,13 @@ (define-public lxcfs
|
|||
(base32
|
||||
"02cgzh97cgxh9iyf7gkn5ikdc0sfzqfjj6al0hikdf9rbwcscqwd"))))
|
||||
(arguments
|
||||
'(#:configure-flags '("--localstatedir=/var")))
|
||||
'(#:configure-flags '("--localstatedir=/var")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'bootstrap
|
||||
;; Work around missing interpreter shebang.
|
||||
(lambda _
|
||||
(invoke "bash" "bootstrap.sh"))))))
|
||||
(native-inputs
|
||||
(list autoconf automake libtool pkg-config))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue