diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-08-20 06:33:23 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-08-20 06:33:23 +0000 |
commit | c8b186e9e6a5e891de413c0d6b84bda7ecccfddf (patch) | |
tree | d37d0be0581456fc39aed709acbee89ce442c981 /packaging | |
parent | 55174ef57bbc05195d657d7d53dd3c1aa3e75f63 (diff) | |
download | wireshark-c8b186e9e6a5e891de413c0d6b84bda7ecccfddf.tar.gz wireshark-c8b186e9e6a5e891de413c0d6b84bda7ecccfddf.tar.bz2 wireshark-c8b186e9e6a5e891de413c0d6b84bda7ecccfddf.zip |
Make sure the GIOP plugins are removed if Ethereal is uninstalled.
svn path=/trunk/; revision=3854
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/nsis/ethereal.nsi.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packaging/nsis/ethereal.nsi.in b/packaging/nsis/ethereal.nsi.in index bf46a8e2d4..043eeaa10d 100644 --- a/packaging/nsis/ethereal.nsi.in +++ b/packaging/nsis/ethereal.nsi.in @@ -1,7 +1,7 @@ ; ; ethereal.nsi ; -; $Id: ethereal.nsi.in,v 1.5 2001/08/20 06:29:57 guy Exp $ +; $Id: ethereal.nsi.in,v 1.6 2001/08/20 06:33:23 guy Exp $ ; ============================================================================ ; Header configuration @@ -151,6 +151,8 @@ Delete "$INSTDIR\*.exe" Delete "$INSTDIR\*.pdb" Delete "$INSTDIR\*.html" Delete "$INSTDIR\*.dll" +Delete "$INSTDIR\plugins\@VERSION@\coseventcomm.dll" +Delete "$INSTDIR\plugins\@VERSION@\cosnaming.dll" Delete "$INSTDIR\plugins\@VERSION@\gryphon.dll" Delete "$INSTDIR\plugins\@VERSION@\mgcp.dll" Delete "$SMPROGRAMS\Ethereal\*.*" |