diff options
author | Günther Deschner <gd@samba.org> | 2005-09-02 09:06:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:03:28 -0500 |
commit | ae7f35086c59e0a6db34ff269ab8012426f8091a (patch) | |
tree | 8c995c10914250695fc4573b1fd720c61c352ba9 /source3/python | |
parent | adfd5cddf7577ce0db2d46351d02a440db63e4ec (diff) | |
download | samba-ae7f35086c59e0a6db34ff269ab8012426f8091a.tar.gz samba-ae7f35086c59e0a6db34ff269ab8012426f8091a.tar.bz2 samba-ae7f35086c59e0a6db34ff269ab8012426f8091a.zip |
r9944: fix python build
Guenther
(This used to be commit 97412dbaada018f90a482176a03daf07f2e76466)
Diffstat (limited to 'source3/python')
-rwxr-xr-x | source3/python/setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/python/setup.py b/source3/python/setup.py index bfc743603b..a8b2c2c26d 100755 --- a/source3/python/setup.py +++ b/source3/python/setup.py @@ -56,6 +56,9 @@ for lib in string.split(samba_libs): if lib[0:2] == "-l": libraries.append(lib[2:]) continue + if lib[0:8] == "-pthread": + libraries.append(lib[2:]) + continue if lib[0:2] == "-L": library_dirs.append(lib[2:]) continue |