diff builder.d @ 42:3c1b0c4d5847

Make builder work for dmd 2.047
author daveb
date Tue, 15 Jun 2010 17:57:42 +0930
parents b6c34f1fc7f3
children d0604b062db8
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)) {