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 | 97412dbaada018f90a482176a03daf07f2e76466 (patch) | |
tree | fa9f57b84dfbc6d01415d9f22c77c20e9e1037b6 /source/python/setup.py | |
parent | e68872d1473ea0557fac1072055a6ed21e5b3d82 (diff) | |
download | samba-97412dbaada018f90a482176a03daf07f2e76466.tar.gz samba-97412dbaada018f90a482176a03daf07f2e76466.tar.xz samba-97412dbaada018f90a482176a03daf07f2e76466.zip |
r9944: fix python build
Guenther
Diffstat (limited to 'source/python/setup.py')
-rwxr-xr-x | source/python/setup.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/python/setup.py b/source/python/setup.py index bfc743603bd..a8b2c2c26d6 100755 --- a/source/python/setup.py +++ b/source/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 |