summary refs log tree commit diff
path: root/gnu/build
diff options
context:
space:
mode:
authorRichard Sent <richard@freakingpenguin.com>2024-07-16 16:48:44 -0400
committerLudovic Courtès <ludo@gnu.org>2024-07-20 12:12:16 +0200
commitde0fbfbf0b5af78177e0fc6c5de519219f1c0a71 (patch)
treeb6ef7f1fe43205ef29db0480947e97fd0c3747d9 /gnu/build
parentca3744cf162235fc6e452cf23cdec57b50c04844 (diff)
downloadguix-de0fbfbf0b5af78177e0fc6c5de519219f1c0a71.tar.gz
file-systems: Skip checking the cifs file-system type.
* gnu/build/file-systems.scm (check-file-system)[check-procedure]: Add cifs.

Change-Id: I891b18f03884ed45e92ac32556fe04b3087e20dd
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/build')
-rw-r--r--gnu/build/file-systems.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index ae29b36c4e..2076994e73 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -1083,6 +1083,7 @@ an exception in such cases but perform the nearest sane action."
      ((string-prefix? "f2fs" type) check-f2fs-file-system)
      ((string-prefix? "ntfs" type) check-ntfs-file-system)
      ((string-prefix? "nfs" type) (const 'pass))
+     ((string-prefix? "cifs" type) (const 'pass))
      ((string-prefix? "xfs" type) check-xfs-file-system)
      (else #f)))