Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2016-02-01 19:10:39 +0300
committerXhmikosR <xhmikosr@gmail.com>2016-03-13 01:52:52 +0300
commit05c9aac0b139240a973db9cdd65af35a32b02cb8 (patch)
tree910f963fa429d53d0720ee4ad456ee2113384abc /contrib
parentd1bd66335841db31a27e6626f7d2c9174d81b094 (diff)
sign.bat: use MSVC 2015.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/sign.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/sign.bat b/contrib/sign.bat
index dc15126cf..006e26fb6 100755
--- a/contrib/sign.bat
+++ b/contrib/sign.bat
@@ -26,8 +26,8 @@ IF "%~1" == "" (
GOTO END
)
-IF NOT DEFINED VS120COMNTOOLS (
- ECHO %~nx0: Visual Studio 2013 does not seem to be installed...
+IF NOT DEFINED VS140COMNTOOLS (
+ ECHO %~nx0: Visual Studio 2015 does not seem to be installed...
SET SIGN_ERROR=True
GOTO END
)
@@ -38,7 +38,7 @@ IF NOT EXIST "%FILE_DIR%..\signinfo.txt" (
GOTO END
)
-signtool /? 2>NUL || CALL "%VS120COMNTOOLS%..\..\VC\vcvarsall.bat" 2>NUL
+signtool /? 2>NUL || CALL "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" 2>NUL
IF %ERRORLEVEL% NEQ 0 (
ECHO vcvarsall.bat call failed.
GOTO End