Dennis wrote: > Thanks to all who replied to this inquiry! > > I guess I'll just download the sources & compile away! BUMMER! >
Instead of downloading a tarball (and then downloading another one later, etc), consider an anonymous cvs checkout. That way, when you want to update, you only download what has changed. http://wiki.linuxcnc.org/cgi-bin/emcinfo.pl?Installing_EMC2#Getting_the_source_with_CVS I have several CVS checkouts on my computer, the latest dev version, the version 2.2 branch, etc. In the top of each checkout directory, I have two one-line scripts: 'update' contains: cvs cvs up -dP && cd src && ./configure --enable-run-in-place 'build' contains: (cd src && make -s ) Whenever I want to be up-to-date, I just do: ./update && ./build It takes between 1 and 5 minutes (depending on how many changes have been made since the last time I updated) before I have a compiled and ready to run EMC2. Regards, John Kasunich ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
