Commit da59e93a authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed handling of .so and .a libraries specified as input files.

parent 409f7a3b
......@@ -430,6 +430,12 @@ static void build(struct options* opts)
case file_obj:
strarray_add(files, strmake("-o%s", file));
break;
case file_arh:
strarray_add(files, strmake("-a%s", file));
break;
case file_so:
strarray_add(files, strmake("-s%s", file));
break;
case file_na:
error("File does not exist: %s", file);
break;
......
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