diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-12-29 15:17:40 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-12-29 15:17:40 +0100 |
commit | 7a4d5d1c0fb78d49163160bfabb8cd1f5d1a2899 (patch) | |
tree | 6cc18fac72ea6df1db5bc99a0513b34c04da7b91 /kernel | |
parent | 0bb6b24c117fa685dce34abf82cb0f9ef73a7661 (diff) | |
download | yosys-7a4d5d1c0fb78d49163160bfabb8cd1f5d1a2899.tar.gz yosys-7a4d5d1c0fb78d49163160bfabb8cd1f5d1a2899.tar.bz2 yosys-7a4d5d1c0fb78d49163160bfabb8cd1f5d1a2899.zip |
Less verbose ABC output
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/yosys.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/yosys.cc b/kernel/yosys.cc index 444bdb1d2..fa9fffa62 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 } |