Show
Ignore:
Timestamp:
09/06/05 04:21:26 (3 years ago)
Author:
Darren_Duncan
Message:

reversed the changes made to lib/Perl6/MakeMaker.pm in r6760, since it appears that 'make' actually needs those literal tabs in Makefiles; reverted 3 space-runs into tabs

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lib/Perl6/MakeMaker.pm

    r6760 r6781  
    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}