Changeset 596
- Timestamp:
- 05/09/07 04:52:59 (1 year ago)
- Files:
-
- branches/tango/sss/main.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/tango/sss/main.d
r595 r596 30 30 31 31 import tango.io.Console; 32 import tango.io.FileConst; 32 33 import tango.io.FilePath; 33 34 import tango.io.FileSystem; … … 224 225 // add useDirs 225 226 foreach (dir; useDirs) { 226 dsss_build ~= "-I" ~ dir ~ std.path.sep~227 "include" ~ std.path.sep~228 "d -S" ~ dir ~ std.path.sep~227 dsss_build ~= "-I" ~ dir ~ FileConst.PathSeparatorChar ~ 228 "include" ~ FileConst.PathSeparatorChar ~ 229 "d -S" ~ dir ~ FileConst.PathSeparatorChar ~ 229 230 "lib "; 230 231 } … … 273 274 { 274 275 if (!(new FilePath(path)).isAbsolute()) { 275 return FileSystem.getDirectory() ~ std.path.sep~ path;276 return FileSystem.getDirectory() ~ FileConst.PathSeparatorChar ~ path; 276 277 } 277 278 return path;
