diff options
author | Guillaume Rousse <guillomovitch@mandriva.org> | 2009-05-23 12:48:00 +0000 |
---|---|---|
committer | Guillaume Rousse <guillomovitch@mandriva.org> | 2009-05-23 12:48:00 +0000 |
commit | 981919314f9e07ad504644a1885de52752b6b881 (patch) | |
tree | 82af60cb712457bb94e2769f026138c32e43e09a /fix_eol | |
parent | 60f402402accaa8d30eed9851dab2cc2727a2f1f (diff) | |
download | spec-helper-981919314f9e07ad504644a1885de52752b6b881.tar spec-helper-981919314f9e07ad504644a1885de52752b6b881.tar.gz spec-helper-981919314f9e07ad504644a1885de52752b6b881.tar.bz2 spec-helper-981919314f9e07ad504644a1885de52752b6b881.tar.xz spec-helper-981919314f9e07ad504644a1885de52752b6b881.zip |
skip PDF files (mdv bug #51128)
Diffstat (limited to 'fix_eol')
-rwxr-xr-x | fix_eol | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -31,7 +31,12 @@ sub convert { # check if first line has less than 80 characters and ends with \r\n open(my $in, '<', $_) or die "Unable to open file $_: $!"; my $line = <$in>; - if (defined $line && length($line) <= 80 && $line =~ s/\r\n$/\n/) { + if ( + defined $line && + length($line) <= 80 && + $line !~ /^%PDF/ && + $line =~ s/\r\n$/\n/ + ) { # process all file my $out = File::Temp->new(DIR => '.', UNLINK => 0); print $out $line; |