reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit 33b6a1207b0aab7ca109a442833f4645fc04efa7
parent 06420408a92db3cff2a4a3919901fa7f487a45b4
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Fri, 26 Aug 2016 01:19:50 -0700

build_deps: enhance how the curl build directory is cleaned up

Diffstat:
Mbuild_deps.bat | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build_deps.bat b/build_deps.bat @@ -6,17 +6,17 @@ set vendor=%self%\vendor set curl=%vendor%\curl if "%1%"=="curl32" ( - del "%curl%\builds\"* /Q /S cd "%curl%\winbuild" nmake /f Makefile.vc mode=static RTLIBCFG=static MACHINE=x86 xcopy /y /s %curl%\builds\libcurl-vc-x86-release-static-ipv6-sspi-winssl %vendor%\libcurl32\ + rmdir "%curl%\builds" /Q /S exit /b ) if "%1%"=="curl64" ( - del "%curl%\builds\"* /Q /S cd "%curl%\winbuild" nmake /f Makefile.vc mode=static RTLIBCFG=static MACHINE=x64 xcopy /y /s %curl%\builds\libcurl-vc-x64-release-static-ipv6-sspi-winssl %vendor%\libcurl64\ + rmdir "%curl%\builds" /Q /S exit /b )