summaryrefslogtreecommitdiff
path: root/source4/build
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-03-13 21:21:44 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:57:13 -0500
commit42e919b3b0ba215403d90675848e282e3a0128ef (patch)
tree98fef1267faf4ca216f09ca867e07837b36cab0a /source4/build
parentb1bf44a4e1190fe41440e731adaab9db14881508 (diff)
downloadsamba-42e919b3b0ba215403d90675848e282e3a0128ef.tar.gz
samba-42e919b3b0ba215403d90675848e282e3a0128ef.tar.bz2
samba-42e919b3b0ba215403d90675848e282e3a0128ef.zip
r14347: Add registration function to allow registering smbtorture test(suites)
Fix mechanism for breaking lines when printing test names. (This used to be commit c1061f5fe478918f996fdeaa382a1f5552135bb9)
Diffstat (limited to 'source4/build')
-rw-r--r--source4/build/smb_build/header.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/build/smb_build/header.pm b/source4/build/smb_build/header.pm
index 1a57ee4364..af835e9dae 100644
--- a/source4/build/smb_build/header.pm
+++ b/source4/build/smb_build/header.pm
@@ -29,7 +29,9 @@ sub _prepare_build_h($)
foreach my $key (values %{$depend}) {
my $DEFINE = ();
- next if ($key->{TYPE} ne "LIBRARY" and $key->{TYPE} ne "SUBSYSTEM");
+ next if ($key->{TYPE} ne "LIBRARY" and
+ $key->{TYPE} ne "SUBSYSTEM" and
+ $key->{TYPE} ne "BINARY");
next unless defined($key->{INIT_FUNCTIONS});
$DEFINE->{COMMENT} = "$key->{TYPE} $key->{NAME} INIT";