summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/input.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-11-21 14:49:35 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:46:02 +0100
commit218fef224c558c2c6be8e67c3275c8cc27dead7e (patch)
tree2fff1ace46b2a95541371182f9a98b2ef76fc740 /source4/build/smb_build/input.pm
parentdd2a4719df68519c11f115aaa8b77e7afca0a2a3 (diff)
downloadsamba-218fef224c558c2c6be8e67c3275c8cc27dead7e.tar.gz
samba-218fef224c558c2c6be8e67c3275c8cc27dead7e.tar.bz2
samba-218fef224c558c2c6be8e67c3275c8cc27dead7e.zip
r26097: Consider python modules special modules rather than special libraries.
(This used to be commit 4c26cf38102a67ae12b3512b5d38991f020ed2e2)
Diffstat (limited to 'source4/build/smb_build/input.pm')
-rw-r--r--source4/build/smb_build/input.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm
index d0d923bf5e..51b4c9bf39 100644
--- a/source4/build/smb_build/input.pm
+++ b/source4/build/smb_build/input.pm
@@ -160,7 +160,9 @@ sub check_python($$)
$python->{LIBRARY_REALNAME} = "$basename.\$(SHLIBEXT)";
}
- check_library($INPUT, $python, ["SHARED_LIBRARY"]);
+ $python->{SUBSYSTEM} = "LIBPYTHON";
+
+ check_module($INPUT, $python, ["SHARED_LIBRARY"]);
}
sub check_binary($$)