diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-02-16 16:58:26 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-02-29 13:48:11 +0100 |
commit | 2c2a589183067d7fced4ace33380bd1af610924a (patch) | |
tree | 3004480ec6e517971b2409b88f9979e1e85274f0 /source/build | |
parent | 3519aae1845f2a15330184625d541ce0f0cac56b (diff) | |
download | samba-2c2a589183067d7fced4ace33380bd1af610924a.tar.gz |
Use make to generate lists of libraries.
Diffstat (limited to 'source/build')
-rw-r--r-- | source/build/smb_build/makefile.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/build/smb_build/makefile.pm b/source/build/smb_build/makefile.pm index 2acd0225038..fea0977ee6d 100644 --- a/source/build/smb_build/makefile.pm +++ b/source/build/smb_build/makefile.pm @@ -214,7 +214,7 @@ sub SharedLibrary($$) { my ($self,$ctx) = @_; - $self->output("SHARED_LIBS += $ctx->{RESULT_SHARED_LIBRARY}\n") if (defined($ctx->{SO_VERSION})); + $self->output("SHARED_LIBS += $ctx->{SHAREDDIR}/$ctx->{LIBRARY_REALNAME}\n") if (defined($ctx->{SO_VERSION})); $self->_prepare_list($ctx, "DEPEND_LIST"); $self->_prepare_list($ctx, "LINK_FLAGS"); |