From acde81f041298c97d75e1cfab76b8900a436ed61 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Tue, 24 Jun 2014 22:20:51 -0500 Subject: [PATCH] GH #477: 1.5.2 buildwin.cmd incorrect, part II --- buildwin.cmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildwin.cmd b/buildwin.cmd index 7f37ca2ce..f09cb3a99 100644 --- a/buildwin.cmd +++ b/buildwin.cmd @@ -148,9 +148,9 @@ if not "%ACTION%"=="build" ( if not "%ACTION%"=="rebuild" ( if not "%ACTION%"=="clean" goto usage)) -rem LINKMODE [static|shared|both] +rem LINKMODE [static_mt|static_md|shared|all] set LINK_MODE=%3 -if "%LINK_MODE%"=="" (set LINK_MODE=shared) +if "%LINK_MODE%"=="" (set LINK_MODE=all) if not "%LINK_MODE%"=="static_mt" ( if not "%LINK_MODE%"=="static_md" ( if not "%LINK_MODE%"=="shared" ( @@ -158,7 +158,7 @@ if not "%LINK_MODE%"=="all" goto usage))) rem CONFIGURATION [release|debug|both] set CONFIGURATION=%4 -if "%CONFIGURATION%"=="" (set CONFIGURATION=release) +if "%CONFIGURATION%"=="" (set CONFIGURATION=both) if not "%CONFIGURATION%"=="release" ( if not "%CONFIGURATION%"=="debug" ( if not "%CONFIGURATION%"=="both" goto usage))