From: Tony Cook Date: Sat, 14 Jun 2014 01:09:17 +0000 (+1000) Subject: ensure we always produce the same Imager::Regops X-Git-Tag: v0.99~4 X-Git-Url: http://git.imager.perl.org/imager.git/commitdiff_plain/5e795fcc42c699ff2e3d9a08ccfe7b187f7f0909 ensure we always produce the same Imager::Regops On win32 this produced a CRLF file which confused git --- diff --git a/regops.perl b/regops.perl index 549244e5..613ffc2b 100644 --- a/regops.perl +++ b/regops.perl @@ -5,6 +5,7 @@ my $in = shift or die "No input name"; my $out = shift or die "No output name"; open(IN, $in) or die "Cannot open input $in: $!"; open(OUT, "> $out") or die "Cannot create $out: $!"; +binmode OUT; print OUT <<'EOS'; # AUTOMATICALLY GENERATED BY regops.perl package Imager::Regops;