summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-12-29 15:17:40 +0100
committerClifford Wolf <clifford@clifford.at>2014-12-29 15:17:40 +0100
commit7a4d5d1c0fb78d49163160bfabb8cd1f5d1a2899 (patch)
tree6cc18fac72ea6df1db5bc99a0513b34c04da7b91 /kernel
parent0bb6b24c117fa685dce34abf82cb0f9ef73a7661 (diff)
Less verbose ABC output
Diffstat (limited to 'kernel')
-rw-r--r--kernel/yosys.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/yosys.cc b/kernel/yosys.cc
index 444bdb1d..fa9fffa6 100644
--- a/kernel/yosys.cc
+++ b/kernel/yosys.cc
@@ -360,7 +360,6 @@ void remove_directory(std::string dirname)
if (strcmp(namelist[i]->d_name, ".") && strcmp(namelist[i]->d_name, "..")) {
std::string buffer = stringf("%s/%s", dirname.c_str(), namelist[i]->d_name);
if (!stat(buffer.c_str(), &stbuf) && S_ISREG(stbuf.st_mode)) {
- log("Removing `%s'.\n", buffer.c_str());
remove(buffer.c_str());
} else
remove_directory(buffer);
@@ -368,7 +367,6 @@ void remove_directory(std::string dirname)
free(namelist[i]);
}
free(namelist);
- log("Removing `%s'.\n", dirname.c_str());
rmdir(dirname.c_str());
#endif
}