Hi,

in lib/ModPerl/BuildMM.pm:WriteMakefile() I found these lines (80-83):

    my $inc;
    $inc = $args{INC} if $args{INC};
    $inc = " " . $build->inc;

Shouldn't the last one read instead:

    $inc .= " " . $build->inc;

Torsten

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@perl.apache.org
For additional commands, e-mail: dev-h...@perl.apache.org

Reply via email to