[Module-build-checkins] Module-Build/lib/Module/Build Base.pm,1.482,1.483
Status: Beta
Brought to you by:
kwilliams
|
From: Ken W. <kwi...@us...> - 2005-09-23 02:34:04
|
Update of /cvsroot/module-build/Module-Build/lib/Module/Build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9420/lib/Module/Build Modified Files: Base.pm Log Message: I think these should be strings, not numbers Index: Base.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v retrieving revision 1.482 retrieving revision 1.483 diff -u -d -r1.482 -r1.483 --- Base.pm 22 Sep 2005 18:35:50 -0000 1.482 +++ Base.pm 23 Sep 2005 02:33:56 -0000 1.483 @@ -3286,7 +3286,7 @@ # .c -> .o my $v = $self->dist_version; - $self->compile_c($c_file, defines => {VERSION => $v, XSVERSION => $v}); + $self->compile_c($c_file, defines => {VERSION => qq{"$v"}, XS_VERSION => qq{"$v"}}); # The .bs and .a files don't go in blib/lib/, they go in blib/arch/auto/. # Unfortunately we have to pre-compute the whole path. |