summaryrefslogtreecommitdiff
path: root/source4/build
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-03-12 14:28:22 +0100
committerStefan Metzmacher <metze@samba.org>2009-03-12 14:33:26 +0100
commit2f579200fb439693540ada6e098959aa2d5f414e (patch)
tree38dc5a719198fb7a40ae11fabd3ece05fab5bca9 /source4/build
parentcb388882cf20a8bc8f20f1230bc22d1caff283dd (diff)
downloadsamba-2f579200fb439693540ada6e098959aa2d5f414e.tar.gz
samba-2f579200fb439693540ada6e098959aa2d5f414e.tar.bz2
samba-2f579200fb439693540ada6e098959aa2d5f414e.zip
s4:build: try to fix the build with the ibm checker in the build-farm
The problem is that the shell eats the quotes in -DFOO="foo, bar, NULL" metze
Diffstat (limited to 'source4/build')
-rw-r--r--source4/build/smb_build/main.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl
index 3c84a91a59..0d19e41827 100644
--- a/source4/build/smb_build/main.pl
+++ b/source4/build/smb_build/main.pl
@@ -73,7 +73,7 @@ foreach my $key (values %$OUTPUT) {
$shared_libs_used = 1;
}
if ($key->{TYPE} eq "MODULE" and @{$key->{OUTPUT_TYPE}}[0] eq "MERGED_OBJ" and defined($key->{INIT_FUNCTION})) {
- $mkenv->output("$key->{SUBSYSTEM}_INIT_FUNCTIONS += $key->{INIT_FUNCTION},\n");
+ $mkenv->output("$key->{SUBSYSTEM}_INIT_FUNCTIONS +=$key->{INIT_FUNCTION},\n");
}
$mkenv->CFlags($key);
}