diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-01-16 17:50:29 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-01-16 17:58:50 +0100 |
commit | 6508824f394ceac5cd16b3e620bffd18fe577fc1 (patch) | |
tree | 4e065490847d58d3d765bb920a3784adad25c067 | |
parent | a760146e73ea0f6bb30f01276f3756d97644722c (diff) | |
download | samba-6508824f394ceac5cd16b3e620bffd18fe577fc1.tar.gz samba-6508824f394ceac5cd16b3e620bffd18fe577fc1.tar.bz2 samba-6508824f394ceac5cd16b3e620bffd18fe577fc1.zip |
python: Don't attempt to build shared and static versions of modules, because it's just not going to work with the current build system.
(This used to be commit d9b4a5bb172be74db3c16b50426810f1bdedd00e)
-rw-r--r-- | source4/build/smb_build/input.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm index 0b26aee65e..6d5c4f4a1e 100644 --- a/source4/build/smb_build/input.pm +++ b/source4/build/smb_build/input.pm @@ -182,7 +182,7 @@ sub check_python($$$) $python->{SUBSYSTEM} = "LIBPYTHON"; - check_module($INPUT, $python, ["SHARED_LIBRARY", "STATIC_LIBRARY"]); + check_module($INPUT, $python, $default_ot); } sub check_binary($$) |