How to uninstall yaml-cpp (build from source) -
i tried install yaml-cpp0.2.6 on oneric 11.10 server (on pandaboard / armel architecture).
so used:
$ hg clone http://code.google.com/p/yaml-cpp/ (which appers yaml-cpp0.5.0) $ mkdir build $ cd build $ cmake -dbuild_shared_libs=on .. $ make $ sudo make install
everything without problem. unfortunately needed 0.2.6 version of it. therefore uninstall 0.3.0 version with:
$ sudo make uninstall
but gives me failure
*** no rule make target `uninstall'. stop.'
is there way uninstall it? or modify it, system don't need/want yaml0.2.6 anymore?
the installer copies header files directory $prefix/include/yaml-cpp
, library files $prefix/lib/libyaml-cpp.so
. ($prefix
/usr/local
)
just remove header directory , library files , should uninstalled.
Comments
Post a Comment