mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-10 13:40:20 +01: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 @@ manage system or application containers.")
|
||||||
(base32
|
(base32
|
||||||
"02cgzh97cgxh9iyf7gkn5ikdc0sfzqfjj6al0hikdf9rbwcscqwd"))))
|
"02cgzh97cgxh9iyf7gkn5ikdc0sfzqfjj6al0hikdf9rbwcscqwd"))))
|
||||||
(arguments
|
(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
|
(native-inputs
|
||||||
(list autoconf automake libtool pkg-config))
|
(list autoconf automake libtool pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Add table
Reference in a new issue