Update of /cvsroot/module-build/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2354/lib/ExtUtils/CBuilder/Platform
Modified Files:
Windows.pm
Log Message:
Fix quoting of command line arguments on Windows.
Index: Windows.pm
===================================================================
RCS file: /cvsroot/module-build/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows.pm,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- Windows.pm 3 Oct 2005 22:05:14 -0000 1.11
+++ Windows.pm 21 Feb 2006 09:26:36 -0000 1.12
@@ -93,7 +93,7 @@
sub arg_defines {
my ($self, %args) = @_;
s/"/\\"/g foreach values %args;
- return map "-D$_=$args{$_}", keys %args;
+ return map qq{"-D$_=$args{$_}"}, keys %args;
}
sub compile {
|