Skip to content

Commit

Permalink
Get correct placement of header files
Browse files Browse the repository at this point in the history
-Hd didn't work, header files were simply dumped in the root dir.
  • Loading branch information
John-Colvin committed Mar 5, 2013
1 parent d5ba29f commit 9344ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.d
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ void buildHeaders()
ensureDir(d);

immutable diName = baseName(s, ".d")~".di";
immutable cmd = "dmd "~s~" -c -o- -H -Hd"~d~" -Hf"~diName;
immutable cmd = "dmd "~s~" -c -o- -H -Hf"~d~diName;
writeln(cmd);
enforce(system(cmd) == 0, "Error making header file: "~diName);
}
Expand Down

0 comments on commit 9344ffc

Please sign in to comment.