Changeset 844

Show
Ignore:
Timestamp:
11/30/07 23:50:11 (9 months ago)
Author:
Gregor
Message:

sss/conf.d: DSSS will no longer try to build if no config file is specified and

no file are specified on the command line.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docs/ChangeLog

    r843 r844  
    88        - Added an RPM specfile (see ticket #144). 
    99        - Rebuild now supports the -debuglib and -defaultlib flags. 
     10        - DSSS will no longer try to build if no config file is specified and 
     11          no file are specified on the command line. 
    1012 
    11130.73 from 0.72: 
  • trunk/sss/conf.d

    r813 r844  
    461461        confFile = cast(char[]) std.file.read(configFName); 
    462462    } else { 
     463        if (!genconfig && buildElems.length == 0) { 
     464            // this makes no sense 
     465            writefln("No config file found and no targets explicitly specified."); 
     466            exit(1); 
     467        } 
     468 
    463469        // Generate the config file 
    464470        if (buildElems.length == 0) {