diff options
author | Mark H Weaver <mhw@netris.org> | 2015-09-15 00:02:51 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-09-15 00:17:49 -0400 |
commit | 8338c2416377c58414b64227287756b3b16036c8 (patch) | |
tree | dca8880a3a531103947e3ce036c01d0487c33602 /gnu/packages/linux.scm | |
parent | 1b7b7f27bd09f3a85159435a3669c69e0d80ff97 (diff) | |
download | gnu-guix-8338c2416377c58414b64227287756b3b16036c8.tar gnu-guix-8338c2416377c58414b64227287756b3b16036c8.tar.gz |
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).
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 9da3a21427..f1080e3def 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -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. |