Re: [PATCH] guilt: fix portability problem with using find -perm +111

2016-07-10 Thread Johannes Schindelin
Hi Ted, On Sat, 9 Jul 2016, Theodore Ts'o wrote: > + # is arugably better, but it is a GNU extension. Since this isn't s/arugably/arguably/ Ciao, Dscho -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo

[PATCH] guilt: fix portability problem with using find -perm +111

2016-07-09 Thread Theodore Ts'o
GNU find no longers accepts -perm +111, even though the rest of the world (MacOS, Solaris, BSD) still do. Workaround this problem by using -executable if the system find utility will accept it. Signed-off-by: Theodore Ts'o --- guilt | 13 +++-- 1 file changed, 11