comparison gaim-installer.nsi @ 7357:eb0acf8c8f1e

[gaim-migrate @ 7950] *** empty log message *** committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Mon, 27 Oct 2003 21:05:27 +0000
parents af0e0b4d0c32
children 908343b14e70
comparison
equal deleted inserted replaced
7356:be11a6f2fe00 7357:eb0acf8c8f1e
384 ReadRegStr $R3 HKLM "${HKLM_APP_PATHS_KEY}" "Path" 384 ReadRegStr $R3 HKLM "${HKLM_APP_PATHS_KEY}" "Path"
385 WriteRegStr HKLM "${HKLM_APP_PATHS_KEY}" "Path" "$R3;$R2\bin" 385 WriteRegStr HKLM "${HKLM_APP_PATHS_KEY}" "Path" "$R3;$R2\bin"
386 386
387 perl_done: 387 perl_done:
388 388
389 ; If we don't have install rights and no hklm GTK install.. then Start in lnk property should
390 ; remain gaim dir.. otherwise it should be set to the GTK bin dir. (to avoid dll hell)
391 StrCmp $R0 "NONE" 0 startin_gtk
392 StrCmp $R1 "" startin_gaim
393 startin_gtk:
394 SetOutPath "$R1\bin"
395 startin_gaim:
396 CreateDirectory "$SMPROGRAMS\Gaim" 389 CreateDirectory "$SMPROGRAMS\Gaim"
397 CreateShortCut "$SMPROGRAMS\Gaim\Gaim.lnk" "$INSTDIR\gaim.exe" 390 CreateShortCut "$SMPROGRAMS\Gaim\Gaim.lnk" "$INSTDIR\gaim.exe"
398 CreateShortCut "$DESKTOP\Gaim.lnk" "$INSTDIR\gaim.exe" 391 CreateShortCut "$DESKTOP\Gaim.lnk" "$INSTDIR\gaim.exe"
399 SetOutPath "$INSTDIR" 392 SetOutPath "$INSTDIR"
400 393