Difference between revisions of "How to uninstall wxWidgets"

From AMule Project FAQ
Jump to: navigation, search
(Damn, new lines...)
m (again, cursive)
Line 12: Line 12:
 
Last, the quick'n'dirty [deltaHF (TM)] way (only to be used if the above two failed):
 
Last, the quick'n'dirty [deltaHF (TM)] way (only to be used if the above two failed):
  
''rm -f /usr/bin/wx*''<br>
+
''<pre>
''rm -f /usr/local/bin/wx*''<br>
+
rm -f /usr/bin/wx*
''rm -rf /usr/share/locale''<br>
+
rm -f /usr/local/bin/wx*
''rm -f /usr/local/lib/libwx*''<br>
+
rm -rf /usr/share/locale
''rm -rf /usr/local/lib/wx''<br>
+
rm -f /usr/local/lib/libwx*
''ldconfig''
+
rm -rf /usr/local/lib/wx
 +
ldconfig
 +
</pre>''

Revision as of 10:39, 14 July 2004

Removing packages

If you installed wx through your distro's packages (rpm, deb, tgz, ebuild...) just uninstall it normally.

Uninstalling from sources

If you compiled wx on your own, go to the sources directory and tun make uninstall (as root).
If you deleted the sources directory, you can download it again, run configure and then run make uninstall (again, as root).

Forcing wx out of the system

Last, the quick'n'dirty [deltaHF (TM)] way (only to be used if the above two failed):

rm -f /usr/bin/wx*
rm -f /usr/local/bin/wx*
rm -rf /usr/share/locale
rm -f /usr/local/lib/libwx*
rm -rf /usr/local/lib/wx
ldconfig