Changeset 17052 for util

Show
Ignore:
Timestamp:
07/14/07 05:32:12 (17 months ago)
Author:
audreyt
Message:

* Remove the comment line from Pugs.cabal.in as it's possible

that GHC 6.6's Cabal chokes on it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • util/build_pugs.pl

    r17050 r17052  
    573573        s/__OPTIONS__/@args/; 
    574574        s/__VERSION__/$version/; 
    575  
    576         if (s/__DEPENDS__/$depends/ and /^build-depends:\s+(.+)/) { 
    577             # Explicitly add those packages into GHC_OPTIONS. 
    578             foreach my $pkg (split(/\s*,\s*/, $1)) { 
    579                 $pkg =~ /(\S+)/ or next; 
    580                 push @args, -package => $1; 
    581             } 
    582         } 
    583  
     575        s/__DEPENDS__/$depends/; 
    584576        s/__PERL5_C__/$perl5_c/; 
    585577        s/__PARROT_C__/$parrot_c/;