mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
winegcc: Do use DSO full name for .so arguments.
This commit is contained in:
parent
0b4fe5e56a
commit
b25cd21df2
@ -739,10 +739,10 @@ static void build(struct options* opts)
|
||||
switch(files->base[j][1])
|
||||
{
|
||||
case 'l':
|
||||
case 's':
|
||||
case 'd':
|
||||
strarray_add(link_args, strmake("-l%s", name));
|
||||
break;
|
||||
case 's':
|
||||
case 'o':
|
||||
strarray_add(link_args, name);
|
||||
break;
|
||||
@ -922,9 +922,9 @@ static void build(struct options* opts)
|
||||
switch(files->base[j][1])
|
||||
{
|
||||
case 'l':
|
||||
case 's':
|
||||
strarray_add(link_args, strmake("-l%s", name));
|
||||
break;
|
||||
case 's':
|
||||
case 'a':
|
||||
case 'o':
|
||||
strarray_add(link_args, name);
|
||||
|
Loading…
Reference in New Issue
Block a user