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:
Родитель
c4b5435d4b
Коммит
4a44f952e9
|
@ -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";
|
||||
|
|
Загрузка…
Ссылка в новой задаче