Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2006-11-13 11:50:22 -0800 (Mon, 13 Nov 2006)
Revision: 9751
Log message:
(Bug 518) Implemented svn_realclean.
There are two main differences between how the cvs_realclean and svn_realclean
are implemented:
- svn_realclean is a Shell. alias implemented in OMake, while cvs_realclean
was implemented as a standalone OCaml binary
- svn_realclean relies on svn for parsing of the entries file (the format have
dramatically changes very recently in subversion 1.4.0 - we do not want to
keep having to code support for all the different new formats that the svn
people might be coming up with), while cvs_realclean does it directly. The
downside of the svn_realclean is that it would not work on a machine that
does not have subversion installed.