diff options
| author | ruki <[email protected]> | 2016-07-09 22:45:34 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-07-09 22:45:34 +0800 |
| commit | 4d2231a5136ddf5dca5398feaccc2d82bb56e1e0 (patch) | |
| tree | cd1a7dd18ee6ebbf7b2d120550e8e324b4eddee9 | |
| parent | f54223a97ba93b02128df84d52d3efe7abd2a36a (diff) | |
fix bug for archiving library for windows
| -rwxr-xr-x | xmake/tools/link.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/tools/link.lua b/xmake/tools/link.lua index 3b57e551a..27ea8363d 100755 --- a/xmake/tools/link.lua +++ b/xmake/tools/link.lua @@ -117,7 +117,7 @@ end -- archive the library file function archive(objectfiles, targetfile, flags) - link(objectfile, targetfile, flags) + link(objectfiles, targetfile, flags) end -- check the given flags |
