Changeset 63

Show
Ignore:
Timestamp:
08/29/07 10:10:38 (1 year ago)
Author:
stonecobra
Message:

tango.FileProxy? -> FilePath?, also build bug where filename wasn't .dup'd

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/buildme.d

    r59 r63  
    4141} else { 
    4242    private import tango.io.FileConst; 
    43     private import tango.io.FileProxy : FileProxy
     43    private import tango.io.FilePath : FilePath
    4444    private import tango.stdc.stdlib : system; 
    4545 
     
    114114        void addDirs (char[] parent, char[] name, bool isDir) { 
    115115            if (isDir && name != ".svn") { 
    116                 allList[name] = true; 
     116                allList[name.dup] = true; 
    117117            } 
    118118    } 
    119         FileProxy proxy = new FileProxy("dbi"); 
     119        FilePath proxy = new FilePath("dbi"); 
    120120        proxy.toList(&addDirs); 
    121121    } 
     
    149149    } 
    150150    buildCommand.length = buildCommand.length - 1; 
     151     
    151152    version (Phobos) { 
    152153        if (system("bud " ~ buildCommand)) {