summaryrefslogtreecommitdiff
path: root/source4/build/smb_build
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-05-13 20:13:17 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:53:43 -0500
commit4f0356d9e0daae0be50b089912226a5d472aaeaf (patch)
tree37298048bc99875a2205e5bdfaa3792d39049a62 /source4/build/smb_build
parent77c30ebe9eaf72bdbfb519e252ad6d070c984fad (diff)
downloadsamba-4f0356d9e0daae0be50b089912226a5d472aaeaf.tar.gz
samba-4f0356d9e0daae0be50b089912226a5d472aaeaf.tar.bz2
samba-4f0356d9e0daae0be50b089912226a5d472aaeaf.zip
r701: change debug messages a bit
metze (This used to be commit 03babc5af2552e611bb8f659e14549a580922d72)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r--source4/build/smb_build/input.pl10
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/build/smb_build/input.pl b/source4/build/smb_build/input.pl
index 91ce42bdc8..8488a33c3c 100644
--- a/source4/build/smb_build/input.pl
+++ b/source4/build/smb_build/input.pl
@@ -75,13 +75,13 @@ sub _check_modules($)
if ($build eq "SHARED") {
$CTX->{INPUT}{MODULES}{$mod}{BUILD} = "SHARED";
- printf("Module: %s...SHARED\n",$mod);
+ printf("Module: %s...shared\n",$mod);
} elsif ($build eq "STATIC") {
$CTX->{INPUT}{MODULES}{$mod}{BUILD} = "STATIC";
- printf("Module: %s...STATIC\n",$mod);
+ printf("Module: %s...static\n",$mod);
} else {
$CTX->{INPUT}{MODULES}{$mod}{BUILD} = "NOT";
- printf("Module: %s...NOT\n",$mod);
+ printf("Module: %s...not\n",$mod);
next;
}
}
@@ -95,7 +95,7 @@ sub _check_libraries($)
foreach my $lib (sort keys %{$CTX->{INPUT}{LIBRARIES}}) {
if ($CTX->{INPUT}{LIBRARIES}{$lib}{ENABLE} ne "YES") {
- printf("Library: %s disabled!\n",$CTX->{INPUT}{LIBRARIES}{$lib}{NAME});
+ printf("Library: %s...disabled\n",$CTX->{INPUT}{LIBRARIES}{$lib}{NAME});
next;
}
}
@@ -109,7 +109,7 @@ sub _check_binaries($)
foreach my $bin (sort keys %{$CTX->{INPUT}{BINARIES}}) {
if ($CTX->{INPUT}{BINARIES}{$bin}{ENABLE} ne "YES") {
- printf("Binary: %s disabled!\n",$CTX->{INPUT}{BINARIES}{$bin}{NAME});
+ printf("Binary: %s...disabled\n",$CTX->{INPUT}{BINARIES}{$bin}{NAME});
next;
}
}