http://bugs.gentoo.org/93348 libattr/attr_copy_file.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) --- attr-2.4.22/libattr/attr_copy_file.c 2004-11-30 08:34:47.000000000 -0500 +++ attr/libattr/attr_copy_file.c 2005-05-20 11:49:25.000000000 -0400 @@ -138,9 +138,9 @@ if (lsetxattr (dst_path, name, value, size, 0) != 0) { const char *qpath = quote (ctx, dst_path); - if (errno == ENOSYS) { - error (ctx, _("setting attributes for %s"), - qpath); + if (errno == ENOSYS || errno == EOPNOTSUPP) { + error (ctx, _("Metadata will be lost, " + "setting attributes for %s"), qpath); ret = -1; break; /* no hope of getting any further */ } else {