lpereira / hardinfo

System profiler and benchmark tool for Linux systems
http://hardinfo.org
GNU General Public License v2.0
774 stars 130 forks source link

No "uninstall" make target #616

Closed StatusCode404 closed 3 years ago

StatusCode404 commented 3 years ago

When trying out hardinfo from GitHub, there is no uninstall target for the make file.

$ sudo make uninstall
make: *** No rule to make target 'uninstall'.  Stop.

So now doing an uninstall is quite difficult as it would have to be done by reverse engineering all the copies from:

$ sudo make install
lpereira commented 3 years ago

sudo xargs rm < install_manifest.txt from the build directory should work instead.

StatusCode404 commented 3 years ago

Thanks!