Changeset 7579 for inc

Show
Ignore:
Timestamp:
10/12/05 17:11:11 (3 years ago)
Author:
rafl
Message:

r17088@ata: rafl | 2005-10-12 17:10:51 +0200

  • Made changes to remove all directories from include-dirs in Pugs.cabal that are in the source tree. They aren't installed or needed for linking, etc.
Files:
1 modified

Legend:

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

    r7449 r7579  
    163163. 
    164164    } 
    165     my $ghc_flags = "-H0 -L. -Lsrc -Lsrc/syck -Lsrc/pcre -I. -Isrc -Isrc/pcre -Isrc/syck "; 
     165#    my $ghc_flags = "-H0 -L. -Lsrc -Lsrc/syck -Lsrc/pcre -I. -Isrc -Isrc/pcre -Isrc/syck "; 
     166    my $ghc_flags = "-H0 -L. -Lsrc -Lsrc/syck -Lsrc/pcre "; 
    166167    $ghc_flags .= " -i. -isrc -isrc/pcre -isrc/syck -static "; 
    167168    $ghc_flags .= " -Wall " #  -package-name Pugs -odir dist/build/src -hidir dist/build/src " 
     
    171172      if $self->is_extension_build; 
    172173    if ($ENV{PUGS_EMBED} and $ENV{PUGS_EMBED} =~ /perl5/i) { 
    173         $ghc_flags .= " -isrc/perl5 -Isrc/perl5 "; 
     174#        $ghc_flags .= " -isrc/perl5 -Isrc/perl5 "; 
     175        $ghc_flags .= " -isrc/perl5 "; 
    174176        $ghc_flags .= join(' ', grep { m{^/} or m{^-[DILl]} or m{^-Wl,-R} } 
    175177                        split (' ', `$^X -MExtUtils::Embed -e ccopts,ldopts`));