gnu: util-linux: Minor fixes.
* gnu/packages/linux.scm (util-linux)[source]: Return #t from the snippet. [arguments]: Remove "--enable-ddate" from configure flags, as it is no longer recognized (ddate is no longer included in util-linux).
This commit is contained in:
parent
1b7b7f27bd
commit
8338c24163
|
@ -404,13 +404,14 @@ providing the system administrator with some help in common tasks.")
|
||||||
(snippet
|
(snippet
|
||||||
;; We take the 'logger' program from GNU Inetutils and 'kill'
|
;; We take the 'logger' program from GNU Inetutils and 'kill'
|
||||||
;; from GNU Coreutils.
|
;; from GNU Coreutils.
|
||||||
'(substitute* "configure"
|
'(begin
|
||||||
(("build_logger=yes") "build_logger=no")
|
(substitute* "configure"
|
||||||
(("build_kill=yes") "build_kill=no")))))
|
(("build_logger=yes") "build_logger=no")
|
||||||
|
(("build_kill=yes") "build_kill=no"))
|
||||||
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "--disable-use-tty-group"
|
`(#:configure-flags (list "--disable-use-tty-group"
|
||||||
"--enable-ddate"
|
|
||||||
|
|
||||||
;; Install completions where our
|
;; Install completions where our
|
||||||
;; bash-completion package expects them.
|
;; bash-completion package expects them.
|
||||||
|
|
Loading…
Reference in New Issue