aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/driver.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-04-29 13:48:52 +0200
committerGitHub <noreply@github.com>2019-04-29 13:48:52 +0200
commit8fde245ea2fbc999328df410f48269b8705d121b (patch)
treea81952a90066194e5cbbf23d17cf602d83ee0f10 /kernel/driver.cc
parentea0e0722bb42254ac8c63eb41664d9dfb7973aec (diff)
parent4f15e7f00fa2b073d6df39d4af7171f2a3f07bc9 (diff)
downloadyosys-8fde245ea2fbc999328df410f48269b8705d121b.tar.gz
yosys-8fde245ea2fbc999328df410f48269b8705d121b.tar.bz2
yosys-8fde245ea2fbc999328df410f48269b8705d121b.zip
Merge pull request #967 from olegendo/depfile_esc_spaces
escape spaces with backslash when writing dep file
Diffstat (limited to 'kernel/driver.cc')
-rw-r--r--kernel/driver.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/driver.cc b/kernel/driver.cc
index 1bc7a5935..f273057dd 100644
--- a/kernel/driver.cc
+++ b/kernel/driver.cc
@@ -529,13 +529,13 @@ int main(int argc, char **argv)
log_error("Can't open dependencies file for writing: %s\n", strerror(errno));
bool first = true;
for (auto fn : yosys_output_files) {
- fprintf(f, "%s%s", first ? "" : " ", fn.c_str());
+ fprintf(f, "%s%s", first ? "" : " ", escape_filename_spaces(fn).c_str());
first = false;
}
fprintf(f, ":");
for (auto fn : yosys_input_files) {
if (yosys_output_files.count(fn) == 0)
- fprintf(f, " %s", fn.c_str());
+ fprintf(f, " %s", escape_filename_spaces(fn).c_str());
}
fprintf(f, "\n");
}