diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-03-08 18:56:45 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-03-08 18:56:45 +0100 |
commit | 03f514869d7514cc7b374db470c8160a086db298 (patch) | |
tree | 2ea9961254a195120a4ef94714c0f63963b35f69 /source4/build/smb_build | |
parent | 3f637016148004e83856466fa90f47015f681ccc (diff) | |
download | samba-03f514869d7514cc7b374db470c8160a086db298.tar.gz samba-03f514869d7514cc7b374db470c8160a086db298.tar.bz2 samba-03f514869d7514cc7b374db470c8160a086db298.zip |
Remove dependency on config.
(This used to be commit 9bdfff0f6f45ffa19bcc996d65d84138f2a02bcf)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/output.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/build/smb_build/output.pm b/source4/build/smb_build/output.pm index b2737b0929..3dd3f0bda1 100644 --- a/source4/build/smb_build/output.pm +++ b/source4/build/smb_build/output.pm @@ -7,7 +7,6 @@ package output; use strict; -use smb_build::config; sub generate_shared_library($) { @@ -48,7 +47,7 @@ sub generate_shared_library($) $lib->{LIBRARY_DEBUGNAME} = $lib->{LIBRARY_REALNAME}; - if (defined($lib->{VERSION}) and $config::config{SONAMEFLAG} ne "#") { + if (defined($lib->{VERSION})) { $lib->{LIBRARY_SONAME} = "$lib->{LIBRARY_REALNAME}.\$($lib->{NAME}_SOVERSION)"; $lib->{LIBRARY_REALNAME} = "$lib->{LIBRARY_REALNAME}.\$($lib->{NAME}_VERSION)"; } |