Changeset 32
- Timestamp:
- 11/09/06 18:41:30 (2 years ago)
- Files:
-
- trunk/buildme.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/buildme.d
r31 r32 35 35 * 2006-10-20 Fixed linux sleep issues. 36 36 * 2006-11-01 Non-Windows library names will now be in the proper style. 37 * 2003-11-09 Fixed a "no effect in expression" warning. 37 38 * 38 39 * Copyright: BSD license … … 92 93 } 93 94 version (Windows) { 94 switchesCompiler["-o dbi.lib"] ;95 switchesCompiler["-o dbi.lib"] = true; 95 96 } else { 96 switchesCompiler["-o libdbi.a"] ;97 switchesCompiler["-o libdbi.a"] = true; 97 98 } 98 99 version (Ares) { … … 151 152 } 152 153 char[] buildCommand; 153 buildCommand.length = buildCommandArray.length * 10;154 154 foreach (char[] command; buildCommandArray) { 155 155 buildCommand ~= command ~ " ";
