Changeset 21697 for Configure.PL

Show
Ignore:
Timestamp:
08/01/08 15:24:46 (5 months ago)
Author:
audreyt
Message:

* Configure.PL: We really can't build universal binaries.

Reported by masak++

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Configure.PL

    r21670 r21697  
    7676 
    7777open INFO, ">Pugs.buildinfo" or die "Cannot write build info: $!"; 
    78 print INFO << "."; 
     78my $info = << "."; 
    7979executable: pugs 
    8080ghc-options: $embed_flags $ccdlflags 
     
    8383ld-options: @ld_options 
    8484. 
     85$info =~ s/-arch\s+\w+\s*//g; 
     86print INFO $info; 
    8587close INFO;