Changeset 596

Show
Ignore:
Timestamp:
05/09/07 04:52:59 (1 year ago)
Author:
Gregor
Message:

sss/main.d: Properly tangofied.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/tango/sss/main.d

    r595 r596  
    3030 
    3131import tango.io.Console; 
     32import tango.io.FileConst; 
    3233import tango.io.FilePath; 
    3334import tango.io.FileSystem; 
     
    224225    // add useDirs 
    225226    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
    229230            "lib "; 
    230231    } 
     
    273274{ 
    274275    if (!(new FilePath(path)).isAbsolute()) { 
    275         return FileSystem.getDirectory() ~ std.path.sep ~ path; 
     276        return FileSystem.getDirectory() ~ FileConst.PathSeparatorChar ~ path; 
    276277    } 
    277278    return path;