summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/main.pl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-02-25 15:06:51 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-02-25 15:06:51 +0100
commit46dd75b82ab1861a0bb22a79359064eab74de470 (patch)
tree25d0fade66dd997d719d65dddeaff62a2ad112b7 /source4/build/smb_build/main.pl
parentd238e06ba2be5c2a7809ed338b42e74cc56789f3 (diff)
downloadsamba-46dd75b82ab1861a0bb22a79359064eab74de470.tar.gz
samba-46dd75b82ab1861a0bb22a79359064eab74de470.tar.bz2
samba-46dd75b82ab1861a0bb22a79359064eab74de470.zip
Fix the build.
(This used to be commit 40476bce2e9b4ac6363fe27f1409eee1a3ed4157)
Diffstat (limited to 'source4/build/smb_build/main.pl')
-rw-r--r--source4/build/smb_build/main.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl
index c6031e23e6..924f94762c 100644
--- a/source4/build/smb_build/main.pl
+++ b/source4/build/smb_build/main.pl
@@ -69,6 +69,9 @@ foreach my $key (values %$OUTPUT) {
$mkenv->PythonFiles($key) if defined($key->{PYTHON_FILES});
$mkenv->Manpage($key) if defined($key->{MANPAGE});
$mkenv->Header($key) if defined($key->{PUBLIC_HEADERS});
+ if ($key->{TYPE} eq "MODULE" and defined($key->{INIT_FUNCTION})) {
+ $mkenv->output("$key->{SUBSYSTEM}_INIT_FUNCTIONS += \"$key->{INIT_FUNCTION},\"\n");
+ }
}
foreach my $key (values %$OUTPUT) {