From: <fu...@us...> - 2007-03-01 20:26:15
|
Revision: 372 http://svn.sourceforge.net/cishell/?rev=372&view=rev Author: fugu13 Date: 2007-03-01 12:26:13 -0800 (Thu, 01 Mar 2007) Log Message: ----------- Now always copies over 'default' (really platform-indepedent) code every time. Like the last fix, not relevant for any (I think) algorithms we currently include, but possibly necessary later. Modified Paths: -------------- trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableAlgorithmFactory.java Modified: trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableAlgorithmFactory.java =================================================================== --- trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableAlgorithmFactory.java 2007-03-01 20:14:17 UTC (rev 371) +++ trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableAlgorithmFactory.java 2007-03-01 20:26:13 UTC (rev 372) @@ -134,7 +134,8 @@ //take the default, if there if(entries.contains(ALGORITHM_DEFAULT)) { - path = ALGORITHM_DEFAULT; + String default_path = ALGORITHM_DEFAULT; + copyDir(dir, default_path); } //but override with platform idiosyncracies This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |