[Module-build-checkins] Module-Build/lib/Module/Build Base.pm,1.428,1.429
Status: Beta
Brought to you by:
kwilliams
|
From: Michael G S. <sc...@us...> - 2005-06-21 00:13:07
|
Update of /cvsroot/module-build/Module-Build/lib/Module/Build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9141/lib/Module/Build Modified Files: Base.pm Log Message: installdirs() is quietly read-only. There's no reason it shouldn't be read/write and if its read-only it makes testing MB hard. So this makes it read/write and that clears up the failures in destinations.t. Index: Base.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v retrieving revision 1.428 retrieving revision 1.429 diff -u -d -r1.428 -r1.429 --- Base.pm 19 Jun 2005 13:55:23 -0000 1.428 +++ Base.pm 21 Jun 2005 00:12:54 -0000 1.429 @@ -258,7 +258,6 @@ } sub base_dir { shift()->{properties}{base_dir} } -sub installdirs { shift()->{properties}{installdirs} } sub _is_interactive { return -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)) ; # Pipe? |