Fix win32 gmake depend loop hang by always treating the dependency .pp files as binary. Avoid any cygwin unix/dos line-ending issues.

r=bryner sr=leaf a=drivers
This commit is contained in:
seawood%netscape.com 2002-03-12 01:28:22 +00:00
Родитель c4b5435d4b
Коммит 4a44f952e9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -95,7 +95,7 @@ if (@objs) {
# Only write out the dependencies if they are different.
if ($new_output ne $old_output) {
open(OUT, ">$outfile") and print OUT "$new_output";
open(OUT, ">$outfile") and binmode(OUT) and print OUT "$new_output";
print "Updating dependencies file, $outfile\n";
if ($debug) {
print "new: $new_output\n";