mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: util-linux: Don't install 'logger'.
* gnu/packages/linux.scm (util-linux)[source]: Add 'snippet'.
This commit is contained in:
parent
6d49355d8b
commit
c9a8ad8477
1 changed files with 10 additions and 1 deletions
|
@ -378,7 +378,16 @@ (define-public util-linux
|
|||
(sha256
|
||||
(base32
|
||||
"1rpgghf7n0zx0cdy8hibr41wvkm2qp1yvd8ab1rxr193l1jmgcir"))
|
||||
(patches (list (search-patch "util-linux-perl.patch")))))
|
||||
(patches (list (search-patch "util-linux-perl.patch")))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
;; We take the 'logger' program from GNU Inetutils, so remove
|
||||
;; it from here.
|
||||
'(substitute* "misc-utils/Makefile.in"
|
||||
(("PROGRAMS =(.*) logger(.*)" _ before after)
|
||||
(string-append "PROGRAMS =" before " " after))
|
||||
(("MANS =(.*) logger\\.1(.*)" _ before after)
|
||||
(string-append "MANS =" before " " after))))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags '("--disable-use-tty-group"
|
||||
|
|
Loading…
Reference in a new issue