From 3c4d2c418e62d421a8bd7640ef5384251c892406 Mon Sep 17 00:00:00 2001 From: Carl Dong Date: Tue, 20 Jul 2021 19:47:28 -0400 Subject: [PATCH] guix: Silence getent(1) invocation --- contrib/guix/guix-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/guix/guix-build b/contrib/guix/guix-build index f6da8435e99..5a908a507d0 100755 --- a/contrib/guix/guix-build +++ b/contrib/guix/guix-build @@ -190,7 +190,7 @@ fi # Services database must have basic entries ################ -if ! getent services http https ftp; then +if ! getent services http https ftp > /dev/null 2>&1; then cat << EOF ERR: Your system's C library can not find service database entries for at least one of the following services: http, https, ftp.