From ddc48153a58b1f8f852ba6610802effc7d94c6c5 Mon Sep 17 00:00:00 2001 From: Guillaume Rousse Date: Wed, 14 May 2008 08:54:21 +0000 Subject: return of the explicit symlink test during file recursion, as previous commit make them accepted --- fix_eol | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fix_eol') diff --git a/fix_eol b/fix_eol index ea14c29..7158713 100755 --- a/fix_eol +++ b/fix_eol @@ -25,6 +25,8 @@ find(\&convert, $buildroot); sub convert { # skip everything but files return unless -f $_; + # skip symlinks + return if -l $_; # skip binary files return unless -T $_; # skip excluded files -- cgit v1.2.1