Fixed problem with default output filename

This commit is contained in:
Steve Chamberlain 1991-05-14 18:52:40 +00:00
parent 8c514453d0
commit e89432c7c9
1 changed files with 2 additions and 1 deletions

View File

@ -1943,7 +1943,8 @@ void
DEFUN_VOID(lang_final)
{
if (had_output_filename == false) {
lang_add_output("a.out");
extern CONST char *output_filename;
lang_add_output(output_filename);
}
}