diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-11-06 01:05:26 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:44:25 +0100 |
commit | ba4a5bb2ea2cf81869585bc518b2da2108cd0c28 (patch) | |
tree | 84ef9af8a29805fa8f6ed2478c32cd01e39d53ec /source4/build | |
parent | 48ed51e61ec4378a0c3d4063a28d7247813548dc (diff) | |
download | samba-ba4a5bb2ea2cf81869585bc518b2da2108cd0c28.tar.gz samba-ba4a5bb2ea2cf81869585bc518b2da2108cd0c28.tar.bz2 samba-ba4a5bb2ea2cf81869585bc518b2da2108cd0c28.zip |
r25847: Don't link modules against their subsystem.
(This used to be commit 7e34e0645c98c3697767dc78dcd22a98d0f2b8fc)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/smb_build/input.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm index a96aad2271..ca61499fd4 100644 --- a/source4/build/smb_build/input.pm +++ b/source4/build/smb_build/input.pm @@ -102,7 +102,6 @@ sub check_module($$$) my $sane_subsystem = lc($mod->{SUBSYSTEM}); $sane_subsystem =~ s/^lib//; $mod->{INSTALLDIR} = "MODULESDIR/$sane_subsystem"; - push (@{$mod->{PRIVATE_DEPENDENCIES}}, $mod->{SUBSYSTEM}); } if (grep(/INTEGRATED/, @{$mod->{OUTPUT_TYPE}})) { push (@{$INPUT->{$mod->{SUBSYSTEM}}{INIT_FUNCTIONS}}, $mod->{INIT_FUNCTION}) if defined($mod->{INIT_FUNCTION}); |