diff options
author | Chema Alonso Josa <nimiux@gentoo.org> | 2018-03-09 20:16:08 +0100 |
---|---|---|
committer | Chema Alonso Josa <nimiux@gentoo.org> | 2018-03-09 20:16:36 +0100 |
commit | 44443cb00e9b57dd4566bf845b45bbce77b06d4c (patch) | |
tree | 6ee3957da45dcef40809b522df461e43f28550c3 /app-admin/logrotate/files | |
parent | sys-kernel/dracut: bump to 047 (diff) | |
download | gentoo-44443cb00e9b57dd4566bf845b45bbce77b06d4c.tar.gz gentoo-44443cb00e9b57dd4566bf845b45bbce77b06d4c.tar.bz2 gentoo-44443cb00e9b57dd4566bf845b45bbce77b06d4c.zip |
app-admin/logrotate: Bumps version to 3.14.0
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-admin/logrotate/files')
-rw-r--r-- | app-admin/logrotate/files/logrotate-3.14.0-ignore-hidden.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app-admin/logrotate/files/logrotate-3.14.0-ignore-hidden.patch b/app-admin/logrotate/files/logrotate-3.14.0-ignore-hidden.patch new file mode 100644 index 000000000000..6745126259be --- /dev/null +++ b/app-admin/logrotate/files/logrotate-3.14.0-ignore-hidden.patch @@ -0,0 +1,14 @@ +diff -Nuar a/config.c b/config.c +--- a/config.c 2018-03-09 17:47:08.000000000 +0100 ++++ b/config.c 2018-03-09 19:47:42.274696766 +0100 +@@ -440,7 +440,9 @@ + int i; + + /* Check if fname is '.' or '..'; if so, return false */ +- if (fname[0] == '.' && (!fname[1] || (fname[1] == '.' && !fname[2]))) ++ /* Don't include 'hidden' files either; this breaks Gentoo ++ portage config file management http://bugs.gentoo.org/87683 */ ++ if (fname[0] == '.') + return 0; + + /* Check if fname is ending in a taboo-extension; if so, return false */ |