From: Stefan Metzmacher Date: Thu, 12 Mar 2009 13:28:22 +0000 (+0100) Subject: s4:build: try to fix the build with the ibm checker in the build-farm X-Git-Tag: samba-3.4.0pre1~544 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=2f579200fb439693540ada6e098959aa2d5f414e 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 --- diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl index 3c84a91a59e..0d19e418270 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); }