|
From: <hu...@us...> - 2007-03-02 16:06:51
|
Revision: 373
http://svn.sourceforge.net/cishell/?rev=373&view=rev
Author: huangb
Date: 2007-03-02 08:06:38 -0800 (Fri, 02 Mar 2007)
Log Message:
-----------
Have double file separators in ALGORITHM_WIN32 and ALGORITHM_DEFAULT.
Remove one, now the staticexcutable algorithms can run on windows
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:26:13 UTC (rev 372)
+++ trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableAlgorithmFactory.java 2007-03-02 16:06:38 UTC (rev 373)
@@ -84,9 +84,9 @@
ALGORITHM = algName + "/";
ALGORITHM_MACOSX_PPC = ALGORITHM + "macosx.ppc/";
MACOSX = "macosx";
- ALGORITHM_WIN32 = ALGORITHM + "/win32/";
+ ALGORITHM_WIN32 = ALGORITHM + "win32/";
WIN32 = "win32";
- ALGORITHM_DEFAULT = ALGORITHM + "/default/";
+ ALGORITHM_DEFAULT = ALGORITHM + "default/";
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|