Commit b25cd21d authored by Kirill Smelkov's avatar Kirill Smelkov Committed by Alexandre Julliard

winegcc: Do use DSO full name for .so arguments.

parent 0b4fe5e5
...@@ -739,10 +739,10 @@ static void build(struct options* opts) ...@@ -739,10 +739,10 @@ static void build(struct options* opts)
switch(files->base[j][1]) switch(files->base[j][1])
{ {
case 'l': case 'l':
case 's':
case 'd': case 'd':
strarray_add(link_args, strmake("-l%s", name)); strarray_add(link_args, strmake("-l%s", name));
break; break;
case 's':
case 'o': case 'o':
strarray_add(link_args, name); strarray_add(link_args, name);
break; break;
...@@ -922,9 +922,9 @@ static void build(struct options* opts) ...@@ -922,9 +922,9 @@ static void build(struct options* opts)
switch(files->base[j][1]) switch(files->base[j][1])
{ {
case 'l': case 'l':
case 's':
strarray_add(link_args, strmake("-l%s", name)); strarray_add(link_args, strmake("-l%s", name));
break; break;
case 's':
case 'a': case 'a':
case 'o': case 'o':
strarray_add(link_args, name); strarray_add(link_args, name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment