- Timestamp:
- 09/12/06 13:44:54 (2 years ago)
- Files:
-
- 1 modified
-
inc/Module/Install/Pugs.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
inc/Module/Install/Pugs.pm
r13124 r13224 215 215 216 216 GHC_TEST: 217 for my $ghc_dir ( sort @ghc_choices) {217 for my $ghc_dir ($ghc_root, sort @ghc_choices) { 218 218 my $ghc_candidate = qq/${ghc_dir}${slash}bin${slash}ghc.exe/; 219 if ( $ghc_version = $test_ghc_ver->($ghc_candidate)) {219 if (my $ghc_candidate_version = $test_ghc_ver->($ghc_candidate)) { 220 220 $ghc = $ghc_candidate; 221 $ghc_version = $ghc_candidate_version; 221 222 } 222 223 } 223 warn "*** Using GHC version: $ghc \n" if $ghc;224 warn "*** Using GHC version: $ghc ($ghc_version)\n" if $ghc; 224 225 } 225 226 }
