diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-02-18 10:52:48 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-02-18 06:03:57 +0100 |
commit | e92922308b5636d1b23fa44f1f8aa50413d48d77 (patch) | |
tree | 57e1014bc74c45123a212971012b49c58ecf4ffd /buildtools | |
parent | 40a48f5502e216af2e7e6788694ad4e094f59d83 (diff) | |
download | samba-e92922308b5636d1b23fa44f1f8aa50413d48d77.tar.gz |
build: put links for libs in the right directory
when a library is declared as libdir/libname, still put the symlink in
bin/shared
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Fri Feb 18 06:03:57 CET 2011 on sn-devel-104
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_install.py b/buildtools/wafsamba/samba_install.py index f25fd543e32..3e055d7ed85 100644 --- a/buildtools/wafsamba/samba_install.py +++ b/buildtools/wafsamba/samba_install.py @@ -182,7 +182,7 @@ def symlink_lib(self): link_target = getattr(self, 'link_name', '') if link_target == '': - basename = self.bld.make_libname(self.target, version=soext) + basename = os.path.basename(self.bld.make_libname(self.target, version=soext)) if getattr(self, "private_library", False): link_target = '%s/private/%s' % (LIB_PATH, basename) else: |