X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f From: xeon AT dacreations DOT cjb DOT net (xeon) Newsgroups: comp.os.msdos.djgpp Subject: Re: version control packages for dos Date: 24 Apr 2002 12:22:16 -0700 Organization: http://groups.google.com/ Lines: 51 Message-ID: References: NNTP-Posting-Host: 202.137.18.26 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1019676137 9874 127.0.0.1 (24 Apr 2002 19:22:17 GMT) X-Complaints-To: groups-abuse AT google DOT com NNTP-Posting-Date: 24 Apr 2002 19:22:17 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Eli Zaretskii wrote in message news:... > I don't understand the problem; could you give more details, like show > what files do you have, what commands did you give, and what error > messages did you see? Consider this sample of invocation : ci ..\RCS\foo.c foo.c ci: ..\rcs\RCS/foo.c : no such file or directory ci: RCS\foo.c : no such file or directory assuming that ..\RCS\foo.c is the target RCS file, and foo.c in the current directory is to be checked in. The invocation will fail because (I assume) ci couldn't find ..\RCS\foo.c to be checked in (the foo.c in RCS directory is assumed to be the file to be checked in, not the RCS file). Another invocation : ci -xrcs ..\RCS\foo.rcs foo.c ..\RCS\foo.rcs <-- foo. ci: foo. : no such file or directory ci: foo.crcs: 1: missing 'head' keyword ci aborted The invocation will fail because ci couldn't find foo. (foo w/o any extensions) anywhere to be checked in (in this case, foo.rcs in the RCS directory is correctly assumed by ci as the target RCS file). co also have a bit of nuisance. Assuming all files have already checked in in RCS\ directory (checked in to RCS\ directory which are found in the current directory) and there are no working files in the current directory, then this invocations will fail : co -l *.c co: RCS\*.c: no such file or directory co -l RCS\*.c co: rcs\RCS/foo.c: no such file or directory What I have to do is this, assuming the working files are to be placed in the current directory : cd RCS for %a in (*.c) do co -l ..\%a cd.. > It's also possible you are using an old/buggy port of RCS; please try the > latest port from the above URL. What I got is RCS 5.7 DOS port downloaded from : http://www.cs.purdue.edu/homes/trinkle/RCS/ I'll try to d/l from simtel. TIA