Ticket #5154: boot.patch

File boot.patch, 378 bytes (added by mcandre, 2 years ago)

Modifies the Perl boot script to work on many more systems

  • boot

    old new  
    1 #!/usr/bin/perl -w 
     1#!perl -w 
    22 
    33use strict; 
    44 
     
    4343} 
    4444 
    4545# Create libraries/*/{ghc.mk,GNUmakefile} 
    46 system("/usr/bin/perl", "-w", "boot-pkgs") == 0 
     46system("perl", "-w", "boot-pkgs") == 0 
    4747    or die "Running boot-pkgs failed: $?"; 
    4848 
    4949my $tag;