From: <av...@us...> - 2011-05-22 17:49:01
|
Revision: 3619 http://sc2.svn.sourceforge.net/sc2/?rev=3619&view=rev Author: avolkov Date: 2011-05-22 17:48:55 +0000 (Sun, 22 May 2011) Log Message: ----------- Add the missing OpenAL piece to the install; delete old packages with .zip names upon install Modified Paths: -------------- trunk/sc2/build/win32_install/uqm-installer.nsi Modified: trunk/sc2/build/win32_install/uqm-installer.nsi =================================================================== --- trunk/sc2/build/win32_install/uqm-installer.nsi 2011-05-21 17:26:51 UTC (rev 3618) +++ trunk/sc2/build/win32_install/uqm-installer.nsi 2011-05-22 17:48:55 UTC (rev 3619) @@ -287,6 +287,7 @@ File "Manual.txt" File "ogg.dll" File "OpenAL32.dll" + File "wrap_oal.dll" File "README.txt" File "SDL.dll" File "SDL_image.dll" @@ -318,6 +319,10 @@ Delete "$INSTDIR\content\packages\uqm-0.6.0-3domusic.uqm" Delete "$INSTDIR\content\packages\uqm-0.6.0-voice.uqm" Delete "$INSTDIR\content\packages\uqm-0.6.0-content.uqm" + # and in a case of manual install and overly helpful browsers + Delete "$INSTDIR\content\packages\uqm-0.6.0-3domusic.uqm.zip" + Delete "$INSTDIR\content\packages\uqm-0.6.0-voice.uqm.zip" + Delete "$INSTDIR\content\packages\uqm-0.6.0-content.uqm.zip" ; Shortcuts !insertmacro MUI_STARTMENU_WRITE_BEGIN Application @@ -546,6 +551,7 @@ Delete "$INSTDIR\SDL_image.dll" Delete "$INSTDIR\SDL.dll" Delete "$INSTDIR\README.txt" + Delete "$INSTDIR\wrap_oal.dll" Delete "$INSTDIR\OpenAL32.dll" Delete "$INSTDIR\ogg.dll" Delete "$INSTDIR\Manual.txt" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |