On Fri, Jun 5, 2009 at 14:24, Chas. Owens <chas.ow...@gmail.com> wrote:
snip
> what line is line 371?
snip

Nevermind, it is obvious:

open my $pipe, "-|", "/usr/atria/bin/cleartool", "desc",
$include_path/$srcfile or die "could not run cleartool: $!";

$include_path is being divided by $srcfile.  The code should probably read

open my $pipe, "-|", "/usr/atria/bin/cleartool", "desc",
"$include_path/$srcfile"
    or die "could not run cleartool: $!";




-- 
Chas. Owens
wonkden.net
The most important skill a programmer can have is the ability to read.

-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to