We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94da9de commit 4e9ce56Copy full SHA for 4e9ce56
src/lib.rs
@@ -726,14 +726,14 @@ impl Config {
726
let mut flagsflag = OsString::from("-D");
727
flagsflag.push(&flag_var);
728
flagsflag.push("=");
729
- flagsflag.push(extra);
730
for arg in compiler.args() {
731
if skip_arg(arg) {
732
continue;
733
}
734
- flagsflag.push(" ");
735
flagsflag.push(arg);
+ flagsflag.push(" ");
736
+ flagsflag.push(extra);
737
cmd.arg(flagsflag);
738
739
0 commit comments