We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd56c5a commit 836acf7Copy full SHA for 836acf7
src/lib.rs
@@ -724,14 +724,14 @@ impl Config {
724
let mut flagsflag = OsString::from("-D");
725
flagsflag.push(&flag_var);
726
flagsflag.push("=");
727
- flagsflag.push(extra);
728
for arg in compiler.args() {
729
if skip_arg(arg) {
730
continue;
731
}
732
- flagsflag.push(" ");
733
flagsflag.push(arg);
+ flagsflag.push(" ");
734
+ flagsflag.push(extra);
735
cmd.arg(flagsflag);
736
737
0 commit comments