Changeset 13063 for inc

Show
Ignore:
Timestamp:
09/06/06 11:49:25 (2 years ago)
Author:
audreyt
Message:

* Fix "make ghci" in conjunction with Perl5 embedding;

embed flags now never affects "make ghci" prompts, and
the _stub.o files, if any, are deleted prior to entering ghci.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • inc/Module/Install/Pugs.pm

    r13030 r13063  
    246246    $ghc_flags .= " -I../../src -i../../src " 
    247247      if $self->is_extension_build; 
    248     if (!$ENV{PUGS_EMBED} or $ENV{PUGS_EMBED} !~ /[-!]perl5/i) { 
    249 #        $ghc_flags .= " -isrc/perl5 -Isrc/perl5 "; 
    250         $ghc_flags .= " -isrc/perl5 "; 
    251         $ghc_flags .= join(' ', grep { m{^/} or m{^-[DILl]} or m{^-Wl,-R} } 
    252                         split (' ', `$^X -MExtUtils::Embed -e ccopts,ldopts`)); 
    253     } 
    254248    chomp $ghc_flags; 
    255249