mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Merge with develop
--HG-- branch : compatibility-develop
This commit is contained in:
commit
fe825a0adc
1 changed files with 6 additions and 5 deletions
|
@ -9,26 +9,27 @@ rem We used this hack because to client 2.1 to 3.0 patch,
|
||||||
rem MSVC10 DLLs are using the same name and are deleted during patch
|
rem MSVC10 DLLs are using the same name and are deleted during patch
|
||||||
if exist %ROOTPATH%\msvcp100_win32.dll (
|
if exist %ROOTPATH%\msvcp100_win32.dll (
|
||||||
if exist %ROOTPATH%\msvcp100.dll del %ROOTPATH%\msvcp100.dll
|
if exist %ROOTPATH%\msvcp100.dll del %ROOTPATH%\msvcp100.dll
|
||||||
copy %ROOTPATH%\msvcp100_win32.dll %ROOTPATH%\msvcp100.dll
|
copy /Y %ROOTPATH%\msvcp100_win32.dll %ROOTPATH%\msvcp100.dll
|
||||||
)
|
)
|
||||||
|
|
||||||
if exist %ROOTPATH%\msvcr100_win32.dll (
|
if exist %ROOTPATH%\msvcr100_win32.dll (
|
||||||
if exist %ROOTPATH%\msvcr100.dll del %ROOTPATH%\msvcr100.dll
|
if exist %ROOTPATH%\msvcr100.dll del %ROOTPATH%\msvcr100.dll
|
||||||
copy %ROOTPATH%\msvcr100_win32.dll %ROOTPATH%\msvcr100.dll
|
copy /Y %ROOTPATH%\msvcr100_win32.dll %ROOTPATH%\msvcr100.dll
|
||||||
)
|
)
|
||||||
|
|
||||||
if exist %ROOTPATH%\msvcp100_win64.dll (
|
if exist %ROOTPATH%\msvcp100_win64.dll (
|
||||||
if exist %ROOTPATH%\msvcp100.dll del %ROOTPATH%\msvcp100.dll
|
if exist %ROOTPATH%\msvcp100.dll del %ROOTPATH%\msvcp100.dll
|
||||||
copy %ROOTPATH%\msvcp100_win64.dll %ROOTPATH%\msvcp100.dll
|
copy /Y %ROOTPATH%\msvcp100_win64.dll %ROOTPATH%\msvcp100.dll
|
||||||
)
|
)
|
||||||
|
|
||||||
if exist %ROOTPATH%\msvcr100_win64.dll (
|
if exist %ROOTPATH%\msvcr100_win64.dll (
|
||||||
if exist %ROOTPATH%\msvcr100.dll del %ROOTPATH%\msvcr100.dll
|
if exist %ROOTPATH%\msvcr100.dll del %ROOTPATH%\msvcr100.dll
|
||||||
copy %ROOTPATH%\msvcr100_win64.dll %ROOTPATH%\msvcr100.dll
|
copy /Y %ROOTPATH%\msvcr100_win64.dll %ROOTPATH%\msvcr100.dll
|
||||||
)
|
)
|
||||||
|
|
||||||
if exist %ROOTPATH%\..\ryzom_installer_qt_r.exe (
|
if exist %ROOTPATH%\..\ryzom_installer_qt_r.exe (
|
||||||
copy %ROOTPATH%\ryzom_installer_qt_r.exe %ROOTPATH%\..
|
if exist %ROOTPATH%\..\ryzom_installer_qt_r.exe del %ROOTPATH%\..\ryzom_installer_qt_r.exe
|
||||||
|
copy /Y %ROOTPATH%\ryzom_installer_qt_r.exe %ROOTPATH%\..
|
||||||
)
|
)
|
||||||
|
|
||||||
:end
|
:end
|
||||||
|
|
Loading…
Reference in a new issue