[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [bug-patch] patch-2.7
From: |
Andreas Grünbacher |
Subject: |
Re: [bug-patch] patch-2.7 |
Date: |
Thu, 10 Apr 2014 15:15:10 +0200 |
Russ,
2014-04-09 6:53 GMT+02:00 Russ Whitaker <address@hidden>:
> Applying patch using --verbose I get:
>
> Hunk#1 succeeded
> Changing attruvutes for <filename>: Operation not supported
when compiled in, patch tries to preserve file attributes, for example:
$ echo a > f
$ setfattr -n user.name -v value f
$ cat > ab.diff
--- f
+++ f
@@ -1 +1 @@
-a
+b
^D
$ patch f < ab.diff
$ getfattr -d f
# file: f
user.name="value"
I assume you get the error message with and without --verbose.
What does strace show in your case?
Andreas