summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--patches/coreutils-9.0.local.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/patches/coreutils-9.0.local.patch b/patches/coreutils-9.0.local.patch
index cd2814c7..1b36cf2b 100644
--- a/patches/coreutils-9.0.local.patch
+++ b/patches/coreutils-9.0.local.patch
@@ -1,3 +1,26 @@
+diff --git a/src/chmod.c b/src/chmod.c
+index 37b04f500..57ac47f33 100644
+--- a/src/chmod.c
++++ b/src/chmod.c
+@@ -44,8 +44,8 @@ struct change_status
+ enum
+ {
+ CH_NO_STAT,
+- CH_NOT_APPLIED,
+ CH_FAILED,
++ CH_NOT_APPLIED,
+ CH_NO_CHANGE_REQUESTED,
+ CH_SUCCEEDED
+ }
+@@ -322,7 +322,7 @@ process_file (FTS *fts, FTSENT *ent)
+ if ( ! recurse)
+ fts_set (fts, ent, FTS_SKIP);
+
+- return CH_NO_CHANGE_REQUESTED <= ch.status;
++ return CH_NOT_APPLIED <= ch.status;
+ }
+
+ /* Recursively change the modes of the specified FILES (the last entry
diff -ru coreutils-9.0.orig/lib/lchmod.c coreutils-9.0/lib/lchmod.c
--- coreutils-9.0.orig/lib/lchmod.c 2021-09-24 13:32:44.000000000 +0200
+++ coreutils-9.0/lib/lchmod.c 2021-09-28 21:21:23.721953133 +0200