]> arthur.barton.de Git - bup.git/blobdiff - lib/bup/metadata.py
Completely disable ACL support on NetBSD for now.
[bup.git] / lib / bup / metadata.py
index fd4ae1b76bda758e99cdfd8af950c8c696aa7564..d8c0a8896b2578ae5ac7bcd310f5cbfac55acd67 100644 (file)
@@ -27,7 +27,9 @@ if sys.platform.startswith('linux'):
             xattr = None
 
 posix1e = None
-if not (sys.platform.startswith('cygwin') or sys.platform.startswith('darwin')):
+if not (sys.platform.startswith('cygwin') \
+        or sys.platform.startswith('darwin') \
+        or sys.platform.startswith('netbsd')):
     try:
         import posix1e
     except ImportError: