Changeset 234

Show
Ignore:
Timestamp:
03/03/07 09:57:01 (2 years ago)
Author:
aldacron
Message:

* restored the buildopts directory and the bud_*.txt files -- should not have removed them before

Files:

Legend:

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

    r233 r234  
    240240        _brfBuf             = ""; 
    241241         
    242         buildBRFBuffer(); 
    243     } 
    244      
    245     void buildBRFBuffer() 
    246     { 
    247242        _brfBuf = loadOpts(_name, OptsType.Common) ~ "\n";           
    248243        _brfBuf ~= loadOpts(_name, cast(OptsType)mode); 
     
    314309    char[] ret = readFile(fileName); 
    315310    if(ret is null) 
    316         return ""; 
     311    { 
     312        throw new Exception(fileName ~ " is missing!"); 
     313    } 
    317314    return ret; 
    318315}