coriolis
coriolis copied to clipboard
make clean_build/make uninstall don't work
We don't have the right path when calling clean_build or uninstall. This is because it uses INST_ROOT/ISYS_ROOT, which are not correct from there.
- clean_build removes
~/coriolis-2.x/src/../build, should be~/coriolis-2.x/Linux.x86_64/Release.Shared/build/ - uninstall removes
~/coriolis-2.x/src/Linux.x86_64, should be~/coriolis-2.x/Linux.x86_64/Release.Shared/install/
It cannot be simply remedied by changing how we compute the path in bootstrap/coriolisEnv.py, as it needs to remain correct to setup the environment when called from the installed coriolis. So for now it's a manual cleanup
when https://github.com/lip6/coriolis/pull/29 is complete, this should solve this issue