diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-05-01 07:31:29 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-05-01 07:31:32 +0200 |
commit | d13f45646ba2c2944b4c787e40fc73a59089dd9d (patch) | |
tree | 3fd61e8064759a63a63aab758f562bc323c9717b /gnu | |
parent | a2cfe190411724eaf0c38777018367724c9007a5 (diff) | |
download | guix-d13f45646ba2c2944b4c787e40fc73a59089dd9d.tar.gz guix-d13f45646ba2c2944b4c787e40fc73a59089dd9d.zip |
gnu: shadow: Return #t from all phases.
* gnu/packages/admin.scm (shadow)[arguments]: Return #t from the
‘set-nscd-file-name’ phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/admin.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 9abf1ea2e3..a9723817b1 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -386,7 +386,8 @@ hostname.") "libc")))) (substitute* "lib/nscd.c" (("/usr/sbin/nscd") - (string-append libc "/sbin/nscd")))))) + (string-append libc "/sbin/nscd"))) + #t))) (add-after 'install 'remove-groups (lambda* (#:key outputs #:allow-other-keys) ;; Remove `groups', which is already provided by Coreutils. |