projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c51445
)
Fixed problem with default output filename
author
Steve Chamberlain
<steve@cygnus>
Tue, 14 May 1991 18:52:40 +0000
(18:52 +0000)
committer
Steve Chamberlain
<steve@cygnus>
Tue, 14 May 1991 18:52:40 +0000
(18:52 +0000)
ld/ldlang.c
patch
|
blob
|
history
diff --git
a/ld/ldlang.c
b/ld/ldlang.c
index f8ac544b5fba7bc6f7142edaa601d877c66f8006..34bb2278cd5146b827d93e7e85130f668a9cad7b 100644
(file)
--- a/
ld/ldlang.c
+++ b/
ld/ldlang.c
@@
-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);
}
}