diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-06-16 20:38:22 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-06-18 23:51:40 +0200 |
commit | 4c22434b3b261d5af45131dc5542e81857c4f468 (patch) | |
tree | e9b3cb8083361f89f237d682c5f45274992ff298 | |
parent | b391b7d07274d30231273255ebe064b4c356e855 (diff) | |
download | samba-4c22434b3b261d5af45131dc5542e81857c4f468.tar.gz samba-4c22434b3b261d5af45131dc5542e81857c4f468.tar.bz2 samba-4c22434b3b261d5af45131dc5542e81857c4f468.zip |
s4: Don't build a $prefix/lib/libpython.so, as such a library often already exists :-)
-rw-r--r-- | source4/scripting/python/wscript_build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/scripting/python/wscript_build b/source4/scripting/python/wscript_build index c77b254fad..9eed8b825a 100644 --- a/source4/scripting/python/wscript_build +++ b/source4/scripting/python/wscript_build @@ -1,9 +1,10 @@ #!/usr/bin/env python -bld.SAMBA_PYTHON('LIBPYTHON', +bld.SAMBA_SUBSYSTEM('LIBPYTHON', source='modules.c', public_deps='EXT_LIB_PYTHON', init_function_sentinal='{NULL,NULL}', + needs_python=True, ) |