Re: [Trisquel-users] Removing programes installed from source

2015-11-01 Thread lord_abinadi

Thanks quantum! Checkinstall was just the sort of thing I was looking for.


Re: [Trisquel-users] Removing programes installed from source

2015-10-30 Thread greatgnu
+ 1 Adfeno mate! That's the way I do it. I compile the source and just run  
the executable from the build directory.


Re: [Trisquel-users] Removing programes installed from source

2015-10-29 Thread moxalt
make clean removes any intermediate or output files from your source / build
tree. However, it only affects the source / build tree; it does not touch the
rest of the filesystem and so will not remove previously installed software.

If you're lucky, running make uninstall will work. It's up to the library's
authors to provide that, however; some authors provide an uninstall target,
others don't.

If you're not lucky, you'll have to manually uninstall it. Running make -n
install can be helpful, since it will show the steps that the software would
take to install itself but won't actually do anything. You can then manually
reverse those steps.

--found on Stack Overflow, with my DuckDuckGo-fu


[Trisquel-users] Removing programes installed from source

2015-10-29 Thread lord_abinadi
Newbie question: how to remove programs you installed from source with "make  
install"?