diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-03-12 13:36:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:57:06 -0500 |
commit | 33647bd841c1c74e7dc50e93379e372056ac2df1 (patch) | |
tree | 7a53e6b05cbbe239b69988f33e217194c4f40dae /source4/build/smb_build | |
parent | 66e3a63c19b3541c439778ad3d8cab1d8acf29d4 (diff) | |
download | samba-33647bd841c1c74e7dc50e93379e372056ac2df1.tar.gz samba-33647bd841c1c74e7dc50e93379e372056ac2df1.tar.bz2 samba-33647bd841c1c74e7dc50e93379e372056ac2df1.zip |
r14240: fix summary output (step 2)
we now need to explicit enable external libraries in
*.m4 files again...
metze
(This used to be commit ca809a7910b16a248fffddc640298bbe4cdedc01)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/input.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm index c0139cb7df..73157758c0 100644 --- a/source4/build/smb_build/input.pm +++ b/source4/build/smb_build/input.pm @@ -175,7 +175,11 @@ sub check($$$$$) } unless(defined($part->{ENABLE})) { - $part->{ENABLE} = "YES"; + if ($part->{TYPE} eq "EXT_LIB") { + $part->{ENABLE} = "NO"; + } else { + $part->{ENABLE} = "YES"; + } } } |