mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 23:36:35 +01:00
gnu: cifs-utils: Update phase style.
* gnu/packages/samba.scm (cifs-utils)[arguments]: Use keyword arguments in phases.
This commit is contained in:
parent
b0a46bcc02
commit
7927a0d9c5
1 changed files with 2 additions and 2 deletions
|
@ -88,10 +88,10 @@ (define-public cifs-utils
|
|||
(invoke "autoreconf" "-vfi")
|
||||
#t))
|
||||
(add-before 'configure 'set-root-sbin
|
||||
(lambda _
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
;; Don't try to install into "/sbin".
|
||||
(setenv "ROOTSBINDIR"
|
||||
(string-append (assoc-ref %outputs "out") "/sbin"))
|
||||
(string-append (assoc-ref outputs "out") "/sbin"))
|
||||
#t))
|
||||
(add-before 'install 'create-man8dir
|
||||
;; Create a directory that isn't created since version 6.10.
|
||||
|
|
Loading…
Reference in a new issue