svn commit: samba r19599 - in branches/SAMBA_4_0/source/pidl: . lib/Parse/Pidl

jelmer at samba.org jelmer at samba.org
Tue Nov 7 01:00:27 GMT 2006


Author: jelmer
Date: 2006-11-07 01:00:27 +0000 (Tue, 07 Nov 2006)
New Revision: 19599

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=19599

Log:
Fix --includedir.

Modified:
   branches/SAMBA_4_0/source/pidl/idl.yp
   branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/IDL.pm


Changeset:
Modified: branches/SAMBA_4_0/source/pidl/idl.yp
===================================================================
--- branches/SAMBA_4_0/source/pidl/idl.yp	2006-11-07 00:48:36 UTC (rev 19598)
+++ branches/SAMBA_4_0/source/pidl/idl.yp	2006-11-07 01:00:27 UTC (rev 19599)
@@ -511,7 +511,7 @@
 	if (! defined $cpp) {
 		$cpp = "cpp";
 	}
-	my $includes = map { " -I$_" } @$incdirs;
+	my $includes = join('',map { " -I$_" } @$incdirs);
 	my $data = `$cpp -D__PIDL__$includes -xc $filename`;
 	$/ = $saved_delim;
 

Modified: branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/IDL.pm
===================================================================
--- branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/IDL.pm	2006-11-07 00:48:36 UTC (rev 19598)
+++ branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/IDL.pm	2006-11-07 01:00:27 UTC (rev 19599)
@@ -3144,7 +3144,7 @@
 	if (! defined $cpp) {
 		$cpp = "cpp";
 	}
-	my $includes = map { " -I$_" } @$incdirs;
+	my $includes = join('',map { " -I$_" } @$incdirs);
 	my $data = `$cpp -D__PIDL__$includes -xc $filename`;
 	$/ = $saved_delim;
 



More information about the samba-cvs mailing list