> I know that I can choose a specific SVN-version to checkout, but how
> do I tell which version I currently have checked out?

        svnversion .

> If I maintain a single SVN source and pass it around my network to
> different systems (64-bit, athlon-xp, and P3's), how do I 'make clean'
> everything once the source is copied over to the new system.

        Not easy. You could do any of:

1) Make sure the Makefiles are valid before cleaning...
    ./configure
    qmake mythtv.pro
    make clean

2) Do a rough manual clean...
    find . -name \*.o     -exec rm -f {} \;
    find . -name \*.so    -exec rm -f {} \;
    find . -name Makefile -exec rm -f {} \;

3) Choose one location for Qt and qmake,
    and symlink on each server from the real location to that

4) Make distclean before copying your source around.
    Undesirable because it wastes time rebuilding on
    your "master" machine, so you could do a copy
    on it before cleaning. e.g.
    % mkdir /tmp/mythtv
    % cp -pr . /tmp/mythtv
    % cd /tmp/mythtv
    % make distclean
    % scp -pr . other-machines:/


--
Nigel Pearson, [EMAIL PROTECTED] | "In this city I confess
Telstra Dev. Lab, Sydney, Australia   |  god is mammon, more is less
Office: 9814 4803    Fax:  9814 4897  |  off like lemmings at the gun
Mobile: 0408 664435  Home: 9792 6998  |  I know better, still I run"

_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to