diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-01-02 03:27:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:49:36 -0500 |
commit | 0b41dad3fc4ad5d29246fc3de6f8f6f4dc662ed6 (patch) | |
tree | 6a1cca2fa2c384f2388abb6e1565100ec9cb33b9 | |
parent | bc4aebfaecf52678eb40aee2fd4bd81a315c554d (diff) | |
download | samba-0b41dad3fc4ad5d29246fc3de6f8f6f4dc662ed6.tar.gz samba-0b41dad3fc4ad5d29246fc3de6f8f6f4dc662ed6.tar.bz2 samba-0b41dad3fc4ad5d29246fc3de6f8f6f4dc662ed6.zip |
r12671: Modules don't have to be linked with their subsystem.
(This used to be commit 8f5edcc6a2ec02a496ef77b7044a56bb8f4be0f1)
-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 ef90e3c122..dfbd26c290 100644 --- a/source4/build/smb_build/input.pm +++ b/source4/build/smb_build/input.pm @@ -75,7 +75,6 @@ sub check_module($$$) if ($mod->{OUTPUT_TYPE} eq "SHARED_LIBRARY") { $mod->{INSTALLDIR} = "MODULESDIR/$mod->{SUBSYSTEM}"; - push (@{$mod->{REQUIRED_SUBSYSTEMS}}, $mod->{SUBSYSTEM}); } else { push (@{$INPUT->{$mod->{SUBSYSTEM}}{REQUIRED_SUBSYSTEMS}}, $mod->{NAME}); push (@{$INPUT->{$mod->{SUBSYSTEM}}{INIT_FUNCTIONS}}, $mod->{INIT_FUNCTION}) if defined($mod->{INIT_FUNCTION}); |