changeset 17197:6d940df6c095

Don't put the Pidgin startmenu entry in a subdirectory. This violates the MS guidelines and (more importantly) it is pointless and annoying. Fixes #1188
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 23 May 2007 02:31:55 +0000
parents 05fa005bdc59
children 93fa59b2623e
files pidgin/win32/nsis/pidgin-installer.nsi
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/win32/nsis/pidgin-installer.nsi	Wed May 23 01:14:29 2007 +0000
+++ b/pidgin/win32/nsis/pidgin-installer.nsi	Wed May 23 02:31:55 2007 +0000
@@ -519,8 +519,7 @@
   SectionEnd
   Section $(PIDGIN_STARTMENU_SHORTCUT_SECTION_TITLE) SecStartMenuShortcut
     SetOverwrite on
-    CreateDirectory "$SMPROGRAMS\Pidgin"
-    CreateShortCut "$SMPROGRAMS\Pidgin\Pidgin.lnk" "$INSTDIR\pidgin.exe"
+    CreateShortCut "$SMPROGRAMS\Pidgin.lnk" "$INSTDIR\pidgin.exe"
     SetOverwrite off
   SectionEnd
 SectionGroupEnd
@@ -750,7 +749,6 @@
     RMDir "$INSTDIR"
 
     ; Shortcuts..
-    RMDir /r "$SMPROGRAMS\Pidgin"
     Delete "$DESKTOP\Pidgin.lnk"
 
     Goto done