mirror of
https://github.com/jorisvink/kore
synced 2025-03-09 04:29:02 -04:00
Check for .so file where we create it
This commit is contained in:
parent
63bbc1fa0f
commit
31aaf128a1
@ -718,9 +718,9 @@ cli_build(int argc, char **argv)
|
||||
|
||||
if (bopt->single_binary) {
|
||||
requires_relink++;
|
||||
(void)cli_vasprintf(&sofile, "%s", appl);
|
||||
(void)cli_vasprintf(&sofile, "%s/%s", out_dir, appl);
|
||||
} else {
|
||||
(void)cli_vasprintf(&sofile, "%s.so", appl);
|
||||
(void)cli_vasprintf(&sofile, "%s/%s.so", out_dir, appl);
|
||||
}
|
||||
|
||||
if (!cli_file_exists(sofile) && source_files_count > 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user