changeset 42:3c1b0c4d5847

Make builder work for dmd 2.047
author daveb
date Tue, 15 Jun 2010 17:57:42 +0930
parents f2e4e1d29b98
children d0604b062db8
files builder.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/builder.d	Tue Jun 01 17:21:01 2010 +0930
+++ b/builder.d	Tue Jun 15 17:57:42 2010 +0930
@@ -515,7 +515,7 @@
         foreach (path; Global.bundlePaths) {
             cmd.format(" -I", path);
         }
-        cmd.format(" -od%s -of%s %s", dirname(mPath), basename(mPath), mSource.mPath);
+        cmd.format(" -od%s %s", dirname(mPath), mSource.mPath);
         cmd.format(" @%s", Global.optionsPath);
 
         if (std.process.system(cmd.str)) {