From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43815) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j8zkp-0004Of-9b for guix-patches@gnu.org; Tue, 03 Mar 2020 00:06:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j8zko-0001tK-EX for guix-patches@gnu.org; Tue, 03 Mar 2020 00:06:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60866) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j8zko-0001tG-A9 for guix-patches@gnu.org; Tue, 03 Mar 2020 00:06:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j8zko-0007Ly-6J for guix-patches@gnu.org; Tue, 03 Mar 2020 00:06:02 -0500 Subject: bug#39698: [PATCH] file-systems: Set default value of the check? field to #f for NFS Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Maxim Cournoyer References: <87d0a9i3il.fsf@gmail.com> <87zhdayipo.fsf@gnu.org> <87v9nwklm6.fsf@gmail.com> <878skpcc8k.fsf@gnu.org> Date: Tue, 03 Mar 2020 00:05:29 -0500 In-Reply-To: <878skpcc8k.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Wed, 26 Feb 2020 21:41:47 +0100") Message-ID: <87tv36jaee.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 39698-done@debbugs.gnu.org Hi again, > Or, to get rid of the warning, what about: > > diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm > index ee6375515f..faf64ce304 100644 > --- a/gnu/build/file-systems.scm > +++ b/gnu/build/file-systems.scm > @@ -581,6 +581,7 @@ were found." > ((string-prefix? "btrfs" type) check-btrfs-file-system) > ((string-suffix? "fat" type) check-fat-file-system) > ((string-prefix? "jfs" type) check-jfs-file-system) > + ((string-prefix? "nfs" type) (const 'pass)) > (else #f))) I've now pushed the above to master. Closing! Maxim