Menu

#2 INSTALL is misleading

open
nobody
None
5
2005-11-07
2005-11-07
No

The INSTALL says:

--- INSTALL begins ---
Add loginfo.wrapper.pl to the CVSROOT/loginfo file of
your cvsroot like this
ALL /path_to_loginfo_wrapper/loginfo.wrapper.pl
<tmpdir> $CVSROOT %{sVv}
where tmpdir is the temporary directory to be used by
loginfo.wrapper.pl.
--- INSTALL ends ---

The problem is now the loginfo.wrapper.pl . It needs
the relative project path supplied by %p. But %p never
appears. Nevertheless, loginfo.wrapper.pl uses it. See:

--- loginfo.wrapper.pl begins ---
$list = $ARGV[2];

@_arg = split / /, $list;

$project = $_arg[0];
@tmp = split /\//, $project;
$project = $tmp[0];
$prefix = join("/", @tmp[1..$#tmp]);
--- loginfo.wrapper.pl ends ---

The missing parentheses around %{sVv} cause the loginfo
to be incomplete. And ... the third argument have to
be: "%p %{sVv}" in the CVSROOT/loginfo .

best regards, Stefan Bolus

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.