Browse Source

master Fixed a compilation issue with onion

Mike Smith 11 years ago
parent
commit
edc5e73b70
1 changed files with 1 additions and 0 deletions
  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