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).
master
Mark H Weaver 2015-09-15 00:02:51 -04:00
parent 1b7b7f27bd
commit 8338c24163
1 changed files with 5 additions and 4 deletions

View File

@ -404,13 +404,14 @@ providing the system administrator with some help in common tasks.")
(snippet
;; We take the 'logger' program from GNU Inetutils and 'kill'
;; from GNU Coreutils.
'(substitute* "configure"
(("build_logger=yes") "build_logger=no")
(("build_kill=yes") "build_kill=no")))))
'(begin
(substitute* "configure"
(("build_logger=yes") "build_logger=no")
(("build_kill=yes") "build_kill=no"))
#t))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags (list "--disable-use-tty-group"
"--enable-ddate"
;; Install completions where our
;; bash-completion package expects them.