# HG changeset patch # User Jan Nieuwenhuizen # Date 1296773864 -3600 # Node ID 7a841bb2369b6ac7aa9e054d3c5aa5be4b9655b2 # Parent 919f33e40679a343a6388f8a3ae90b5c1b2cee64 schikkers-list.nsi: make click-runnable on windows. diff -r 919f33e40679 -r 7a841bb2369b nsis/schikkers-list.nsi --- a/nsis/schikkers-list.nsi Thu Feb 03 23:57:03 2011 +0100 +++ b/nsis/schikkers-list.nsi Thu Feb 03 23:57:44 2011 +0100 @@ -272,9 +272,6 @@ CreateShortCut "$SMPROGRAMS\Schikkers-List\Schikkers-List.lnk" \ "$INSTDIR\usr\bin\schikkers-list.scm" ""\ "$INSTDIR\usr\share\guile\site\ikli\images\ikli.ico" 0 SW_SHOWNORMAL - CreateShortCut "$SMPROGRAMS\Schikkers-List\Schikkers-List-NOQUOTE.lnk" \ - $INSTDIR\usr\bin\schikkers-list.scm ""\ - "$INSTDIR\usr\share\guile\site\ikli\images\ikli.ico" 0 SW_SHOWNORMAL CreateShortCut "$SMPROGRAMS\Schikkers-List\Schikkers-List Website.lnk" \ "http://schikkers-list.org/" "" \ "firefox.exe" 0 @@ -293,9 +290,6 @@ CreateShortCut "$DESKTOP\Schikkers-List.lnk" \ "$INSTDIR\usr\bin\schikkers-list.scm" ""\ "$INSTDIR\usr\share\guile\site\ikli\images\ikli.ico" 0 SW_SHOWNORMAL - CreateShortCut "$DESKTOP\Schikkers-List-NOQUOTE.lnk" \ - $INSTDIR\usr\bin\schikkers-list.scm ""\ - "$INSTDIR\usr\share\guile\site\ikli\images\ikli.ico" 0 SW_SHOWNORMAL FunctionEnd Function registry_python @@ -342,7 +336,7 @@ WriteRegStr HKCR "Guile\shell" "" "open" # %1 is the GUILE command, so must be quoted bo the space ;; WriteRegExpandStr HKCR "Guile\shell\open\command" "" '"$INSTDIR\usr\bin\guile-windows.exe" "%1" %2 %3 %4 %5 %6 %7 %8 %9' - WriteRegExpandStr HKCR "Guile\shell\open\command" "" '"$INSTDIR\usr\bin\guile-windows.exe" %1 %2 %3 %4 %5 %6 %7 %8 %9' + WriteRegExpandStr HKCR "Guile\shell\open\command" "" '"$INSTDIR\usr\bin\guile-windows.exe" "%1" %2 %3 %4 %5 %6 %7 %8 %9' ;;scm_auto_file: ReadRegStr $R0 HKCR "scm_auto_file\shell\open\command" "" @@ -350,6 +344,6 @@ WriteRegStr HKCR "scm_auto_file\shell" "" "open" # %1 is the GUILE command, so must be quoted bo the space ;; WriteRegExpandStr HKCR "scm_auto_file\shell\open\command" "" '"$INSTDIR\usr\bin\guile-windows.exe" "%1" %2 %3 %4 %5 %6 %7 %8 %9' - WriteRegExpandStr HKCR "scm_auto_file\shell\open\command" "" '"$INSTDIR\usr\bin\guile-windows.exe" %1 %2 %3 %4 %5 %6 %7 %8 %9' + WriteRegExpandStr HKCR "scm_auto_file\shell\open\command" "" '"$INSTDIR\usr\bin\guile-windows.exe" "%1" %2 %3 %4 %5 %6 %7 %8 %9' ;;scm_end: FunctionEnd