From: Thomas Klausner Date: Sat, 16 Nov 2013 02:05:17 +0000 (+0100) Subject: Completely disable ACL support on NetBSD for now. X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=349ff15c7db09883abc20bdf3e8a4df6bff12cd3;p=packages%2Fb%2Fbup.git Completely disable ACL support on NetBSD for now. Signed-off-by: Thomas Klausner [rlb@defaultvalue.org: adjust commit message; wrap code.] Signed-off-by: Rob Browning --- diff --git a/lib/bup/metadata.py b/lib/bup/metadata.py index fd4ae1b..d8c0a88 100644 --- a/lib/bup/metadata.py +++ b/lib/bup/metadata.py @@ -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: