Changes between Initial Version and Version 1 of Ticket #369
- Timestamp:
- 02/24/09 03:23:25 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #369 – description
initial v1 1 In this commit, [https://trac.parrot.org/parrot/changeset/36940/ r36940], we find this change to I<lib/Parrot/Configure/Compiler.pm>:1 In this commit, [https://trac.parrot.org/parrot/changeset/36940/ r36940], we find this change to ''lib/Parrot/Configure/Compiler.pm'': 2 2 {{{ 3 3 + $options{no_simply_expanded_var} = 4 4 + $conf->data->get('make') eq 'nmake'; 5 5 }}} 6 This assumes that a value has been initialized for I<$conf->data->get('make')>. That's probably true at the point where I<Configure.pl>encounters this code.6 This assumes that a value has been initialized for ''$conf->data->get('make')''. That's probably true at the point where ''Configure.pl'' encounters this code. 7 7 8 But there are points in testing the configuration system where it is not true. Running I<perl Configure.pl --test=configure>, I encountered uninitialized value warnings in I<t/configure/034-step.t>. Here's the output of I<prove -v>:8 But there are points in testing the configuration system where it is not true. Running ''perl Configure.pl --test=configure'', I encountered uninitialized value warnings in ''t/configure/034-step.t''. Here's the output of ''prove -v'': 9 9 {{{ 10 10 $ prove -v t/configure/034-step.t t/configure/034-step....
