diff options
author | Ørjan Malde <red@foxi.me> | 2021-09-28 22:21:13 +0200 |
---|---|---|
committer | Ørjan Malde <red@foxi.me> | 2021-09-28 22:21:13 +0200 |
commit | 2458c7d62b95ddc3591d91e0bb2a497f18bf22c7 (patch) | |
tree | 89db1cb265f52cff0dd60890c2e86d073958e408 /patches | |
parent | 64f564974bf4eb5b760572be6eb8f7f93020eb90 (diff) | |
download | midipix_build-2458c7d62b95ddc3591d91e0bb2a497f18bf22c7.tar.bz2 midipix_build-2458c7d62b95ddc3591d91e0bb2a497f18bf22c7.tar.xz |
patches/coreutils-9.0.local.patch: update patch (via sam_)
Signed-off-by: Ørjan Malde <red@foxi.me>
Diffstat (limited to 'patches')
-rw-r--r-- | patches/coreutils-9.0.local.patch | 23 |
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 |