let ipkg fail when a package file to be installed is not found
[openwrt/svn-archive/archive.git] / openwrt / package / logrotate / patches / logrotate-3.7.1-ignore-hidden.patch
1 --- logrotate-3.7/config.c.orig 2005-04-26 22:57:53.000000000 -0400
2 +++ logrotate-3.7/config.c 2005-04-26 22:59:36.000000000 -0400
3 @@ -142,6 +142,11 @@
4 (!fname[1] || (fname[1] == '.' && !fname[2])))
5 return 0;
6
7 + /* Don't include 'hidden' files either; this breaks Gentoo
8 + portage config file management http://bugs.gentoo.org/87683 */
9 + if (fname[0] == '.')
10 + return 0;
11 +
12 /* Check if fname is ending in a taboo-extension; if so, return
13 false */
14 for (i = 0; i < tabooCount; i++) {