Changeset 21682
- Timestamp:
- 08/01/08 14:40:10 (5 months ago)
- Files:
-
- 1 modified
-
inc/Module/Install/Pugs.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
inc/Module/Install/Pugs.pm
r17054 r21682 229 229 $ghc_version or die << '.'; 230 230 *** Cannot find a runnable 'ghc' from path. 231 *** Please install GHC (6. 6.1or above) from http://haskell.org/ghc/.231 *** Please install GHC (6.8.0 or above) from http://haskell.org/ghc/. 232 232 . 233 233 234 my $ghc_ge_6 61= (235 ($ghc_version =~ /^(\d)\.(\d+)/ and $1 >= 6 and $2 >= 6)236 and237 $ghc_version ne '6.6'234 my $ghc_ge_680 = ( 235 ($ghc_version =~ /^(\d)\.(\d+)/ and $1 >= 6 and $2 >= 8) 236 # and 237 # $ghc_version ne '6.8' 238 238 ); 239 239 240 unless ($ghc_ge_6 61) {240 unless ($ghc_ge_680) { 241 241 die << "."; 242 *** Cannot find GHC 6. 6.1or above from path (we have $ghc_version).242 *** Cannot find GHC 6.8.0 or above from path (we have $ghc_version). 243 243 *** Please install a newer version from http://haskell.org/ghc/. 244 244 .
