Show
Ignore:
Timestamp:
09/06/05 00:53:15 (3 years ago)
Author:
Darren_Duncan
Message:

updated lib/Perl6/MakeMaker.pm so that it generates Makefiles having lines indented with spaces (4 per indent level) rather than tabs; there were 3 tabs replaced in total

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lib/Perl6/MakeMaker.pm

    r5532 r6760  
    8787    push @to_install, glob("src/*"); 
    8888 
    89     my $cp_to_install = join "\n", map "        \$(CP) $_ \$(INST_ARCHLIB)", @to_install; 
     89    my $cp_to_install = join "\n", map "    \$(CP) $_ \$(INST_ARCHLIB)", @to_install; 
    9090    my ($ghc, $ghc_version, $ghc_flags) = assert_ghc(); 
    9191 
     
    9595 
    9696$module_name.o :: $module_name.hs 
    97         $ghc --make -isrc -Isrc $ghc_flags \$(GHC_FLAGS) $module_name.hs 
     97    $ghc --make -isrc -Isrc $ghc_flags \$(GHC_FLAGS) $module_name.hs 
    9898 
    9999$module_name.hs :: $module_path 
    100         pugs --external $module_name $module_path > $module_name.hs 
     100    pugs --external $module_name $module_path > $module_name.hs 
    101101_ 
    102102}