- Output redirection does not work with run_command(), use system()

instead.
This commit is contained in:
unknown 2003-12-13 04:33:36 +01:00
commit 8ab3553bba

View file

@ -278,9 +278,8 @@ unless ($opt_skip_manual)
&logger($msg);
foreach $file qw/internals manual reservedwords/
{
$command= "bk cat $opt_docdir/Docs/$file.texi";
$command.= " > $target_dir/Docs/$file.texi";
&run_command($command, "Could not updated $file.texi in $target_dir/Docs/!");
system ("bk cat $opt_docdir/Docs/$file.texi > $target_dir/Docs/$file.texi") == 0
or &abort("Could not update $file.texi in $target_dir/Docs/!");
}
}