diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-05-13 00:34:57 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-05-13 00:35:49 +0200 |
commit | aa71ab6d1d4ee6ef4f868b3b8c1b9b6df8cfcb04 (patch) | |
tree | 5dba6b15b086b6f9584dbf519aa1a4597a4c7759 | |
parent | aa84ca6e6ba66536ca32dc5792d27e2169589a14 (diff) | |
download | samba-aa71ab6d1d4ee6ef4f868b3b8c1b9b6df8cfcb04.tar.gz samba-aa71ab6d1d4ee6ef4f868b3b8c1b9b6df8cfcb04.tar.bz2 samba-aa71ab6d1d4ee6ef4f868b3b8c1b9b6df8cfcb04.zip |
s4 config-summary: Fix printing of which libraries are external and
internal.
-rw-r--r-- | source4/build/smb_build/summary.pm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/source4/build/smb_build/summary.pm b/source4/build/smb_build/summary.pm index c7916216ab..153c3e20e9 100644 --- a/source4/build/smb_build/summary.pm +++ b/source4/build/smb_build/summary.pm @@ -36,8 +36,14 @@ sub showitem($$$) sub showisexternal($$$) { my ($output, $desc, $name) = @_; - print "Using external $desc: ". - (($output->{$name}->{TYPE} eq "EXT_LIB")?"yes":"no")."\n"; + print "Using external $desc: "; + if ($output->{$name}->{TYPE} eq "SUBSYSTEM" or + $output->{$name}->{TYPE} eq "LIBRARY") { + print "no"; + } else { + print "yes"; + } + print "\n"; } sub show($$) |