diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-06-03 17:46:07 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-06-03 17:46:07 +0200 |
commit | 6b2438f548aa8b2b2c26b94a8f782a11e87370be (patch) | |
tree | 9ec29b73da34640f42d9feeb0ceda74cee72c0be /make/calcdep.pl | |
parent | 61696290a6ba5a2a862a0fa43508767886da3497 (diff) | |
parent | cf94052d8fae19b12e43e25eb154ab89e2648f56 (diff) |
Merge pull request #1054 from SaberUK/master+fix-linking-modules
Fix modules with 2+ files not having their LinkerFlags parsed.
Diffstat (limited to 'make/calcdep.pl')
-rwxr-xr-x | make/calcdep.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/calcdep.pl b/make/calcdep.pl index 513038843..2348edceb 100755 --- a/make/calcdep.pl +++ b/make/calcdep.pl @@ -250,7 +250,7 @@ sub dep_dir($$) { if (@ofiles) { my $ofiles = join ' ', @ofiles; print MAKE "$outdir.so: $ofiles\n"; - print MAKE "\t@\$(SOURCEPATH)/make/unit-cc.pl link-dir\$(VERBOSE) \$\@ \$^ \$>\n"; + print MAKE "\t@\$(SOURCEPATH)/make/unit-cc.pl link-dir\$(VERBOSE) \$\@ ${\SOURCEPATH}/src/$dir \$^ \$>\n"; return 1; } else { return 0; |