use '-s' options instead of '-' for 'silent' on ed, as we know at least one machine where the former succeeds and the latter fails though both mean the same, r=ted

This commit is contained in:
Robert Kaiser 2008-07-03 18:51:44 +02:00
Родитель 211a8c1c49
Коммит 47d46f359c
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -46,8 +46,8 @@ sub do_patch {
chmod 0666, $target_file;
print $fh "w\n";
$fh->close();
print "$ed - $target_file < $patch_file\n";
system "$ed - $target_file < $patch_file\n";
print "$ed -s $target_file < $patch_file\n";
system "$ed -s $target_file < $patch_file\n";
}
my $header_done = 0;