瀏覽代碼

master Fixed a compilation issue with onion

Mike Smith 11 年之前
父節點
當前提交
edc5e73b70
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      onion/setup.py

+ 1 - 0
onion/setup.py

@@ -8,6 +8,7 @@ def start(args, logfile, errfile):
   os.putenv("ONION_LOG","noinfo")
   subprocess.call("rm *.o", cwd="onion", shell=True, stderr=errfile, stdout=logfile)
   subprocess.call("cp -R installs/onion/* onion/onion", shell=True, stderr=errfile, stdout=logfile)
+  subprocess.call("rm CMakeCache.txt", shell=True, cwd="onion/onion/build", stderr=errfile, stdout=logfile)
   subprocess.Popen("make && ./hello", shell=True, cwd="onion", stderr=errfile, stdout=logfile)
   return 0