diff options
-rw-r--r-- | source4/build/smb_build/smb_build_h.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source4/build/smb_build/smb_build_h.pm b/source4/build/smb_build/smb_build_h.pm index d88f98040e..3b178c8226 100644 --- a/source4/build/smb_build/smb_build_h.pm +++ b/source4/build/smb_build/smb_build_h.pm @@ -28,10 +28,7 @@ sub _prepare_build_h($) foreach my $key (values %{$depend}) { my $DEFINE = (); - next if ($key->{TYPE} ne "LIBRARY" and - $key->{TYPE} ne "SUBSYSTEM" and - $key->{TYPE} ne "BINARY" and - $key->{TYPE} ne "MODULE"); + next if ($key->{TYPE} ne "LIBRARY" and $key->{TYPE} ne "SUBSYSTEM"); next unless defined($key->{INIT_FUNCTIONS}); $DEFINE->{COMMENT} = "$key->{TYPE} $key->{NAME} INIT"; |