# HG changeset patch # User Daniel Atallah # Date 1179887515 0 # Node ID 6d940df6c09503d4a3e0ff6db21c8252759e7458 # Parent 05fa005bdc5911901b0d9d0444f246dec8fe4769 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 diff -r 05fa005bdc59 -r 6d940df6c095 pidgin/win32/nsis/pidgin-installer.nsi --- 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