diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-28 01:41:57 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-28 01:41:57 +0200 |
commit | c611432605bbeea62e44785b5a66f749c670bae1 (patch) | |
tree | 55e042c5ca365a1a53f4ae36d283f916997703e1 | |
parent | 52b230141b5ad9f317f97e7d257703614bab3985 (diff) | |
download | samba-c611432605bbeea62e44785b5a66f749c670bae1.tar.gz samba-c611432605bbeea62e44785b5a66f749c670bae1.tar.bz2 samba-c611432605bbeea62e44785b5a66f749c670bae1.zip |
Depend on debug names of shared libs for linking.
(This used to be commit 2e3296f181acd8010cb1465097b91ae8cbf38b5f)
-rw-r--r-- | source4/build/smb_build/output.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/smb_build/output.pm b/source4/build/smb_build/output.pm index f9f12c3a73..76c6d3fc8f 100644 --- a/source4/build/smb_build/output.pm +++ b/source4/build/smb_build/output.pm @@ -52,7 +52,7 @@ sub generate_shared_library($) $lib->{RESULT_SHARED_LIBRARY} = "$lib->{SHAREDDIR}/$lib->{LIBRARY_REALNAME}"; $lib->{OUTPUT_SHARED_LIBRARY} = "-l$link_name"; - $lib->{TARGET_SHARED_LIBRARY} = $lib->{RESULT_SHARED_LIBRARY}; + $lib->{TARGET_SHARED_LIBRARY} = "$lib->{SHAREDDIR}/$lib->{LIBRARY_DEBUGNAME}"; } sub generate_merged_obj($) |