# HG changeset patch # User daveb # Date 1276590462 -34200 # Node ID 3c1b0c4d584706a50aff0f5691171a994794f971 # Parent f2e4e1d29b9899b6cf5ab7be1f7a8cb42e1df30f Make builder work for dmd 2.047 diff -r f2e4e1d29b98 -r 3c1b0c4d5847 builder.d --- 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)) {