Skip to content

Commit

Permalink
build-openssl.bat: Follow up to 648679a to suppress copy/move output
Browse files Browse the repository at this point in the history
  • Loading branch information
captain-caveman2k committed Feb 8, 2018
1 parent 648679a commit daf959f
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions projects/build-openssl.bat
Original file line number Diff line number Diff line change
Expand Up @@ -220,21 +220,21 @@ rem ***************************************************************************

rem Move the output directories
if exist "%OUTDIR%\LIB Debug" (
copy /y out32.dbg\* "%OUTDIR%\LIB Debug"
copy /y out32.dbg\* "%OUTDIR%\LIB Debug" 1>nul
rd out32.dbg /s /q
) else (
move out32.dbg "%OUTDIR%\LIB Debug"
move out32.dbg "%OUTDIR%\LIB Debug" 1>nul
)
if exist "%OUTDIR%\DLL Debug" (
copy /y out32dll.dbg\* "%OUTDIR%\DLL Debug"
copy /y out32dll.dbg\* "%OUTDIR%\DLL Debug" 1>nul
rd out32dll.dbg /s /q
) else (
move out32dll.dbg "%OUTDIR%\DLL Debug"
move out32dll.dbg "%OUTDIR%\DLL Debug" 1>nul
)

rem Move the PDB files
move tmp32.dbg\lib.pdb "%OUTDIR%\LIB Debug"
move tmp32dll.dbg\lib.pdb "%OUTDIR%\DLL Debug"
move tmp32.dbg\lib.pdb "%OUTDIR%\LIB Debug" 1>nul
move tmp32dll.dbg\lib.pdb "%OUTDIR%\DLL Debug" 1>nul

rem Remove the intermediate directories
rd tmp32.dbg /s /q
Expand All @@ -253,21 +253,21 @@ rem ***************************************************************************

rem Move the output directories
if exist "%OUTDIR%\LIB Release" (
copy /y out32\* "%OUTDIR%\LIB Release"
copy /y out32\* "%OUTDIR%\LIB Release" 1>nul
rd out32 /s /q
) else (
move out32 "%OUTDIR%\LIB Release"
move out32 "%OUTDIR%\LIB Release" 1>nul
)
if exist "%OUTDIR%\DLL Release" (
copy /y out32dll\* "%OUTDIR%\DLL Release"
copy /y out32dll\* "%OUTDIR%\DLL Release" 1>nul
rd out32dll /s /q
) else (
move out32dll "%OUTDIR%\DLL Release"
move out32dll "%OUTDIR%\DLL Release" 1>nul
)

rem Move the PDB files
move tmp32\lib.pdb "%OUTDIR%\LIB Release"
move tmp32dll\lib.pdb "%OUTDIR%\DLL Release"
move tmp32\lib.pdb "%OUTDIR%\LIB Release" 1>nul
move tmp32dll\lib.pdb "%OUTDIR%\DLL Release" 1>nul

rem Remove the intermediate directories
rd tmp32 /s /q
Expand All @@ -293,21 +293,21 @@ rem ***************************************************************************

rem Move the output directories
if exist "%OUTDIR%\LIB Debug" (
copy /y out32.dbg\* "%OUTDIR%\LIB Debug"
copy /y out32.dbg\* "%OUTDIR%\LIB Debug" 1>nul
rd out32.dbg /s /q
) else (
move out32.dbg "%OUTDIR%\LIB Debug"
move out32.dbg "%OUTDIR%\LIB Debug" 1>nul
)
if exist "%OUTDIR%\DLL Debug" (
copy /y out32dll.dbg\* "%OUTDIR%\DLL Debug"
copy /y out32dll.dbg\* "%OUTDIR%\DLL Debug" 1>nul
rd out32dll.dbg /s /q
) else (
move out32dll.dbg "%OUTDIR%\DLL Debug"
move out32dll.dbg "%OUTDIR%\DLL Debug" 1>nul
)

rem Move the PDB files
move tmp32.dbg\lib.pdb "%OUTDIR%\LIB Debug"
move tmp32dll.dbg\lib.pdb "%OUTDIR%\DLL Debug"
move tmp32.dbg\lib.pdb "%OUTDIR%\LIB Debug" 1>nul
move tmp32dll.dbg\lib.pdb "%OUTDIR%\DLL Debug" 1>nul

rem Remove the intermediate directories
rd tmp32.dbg /s /q
Expand All @@ -326,21 +326,21 @@ rem ***************************************************************************

rem Move the output directories
if exist "%OUTDIR%\LIB Release" (
copy /y out32\* "%OUTDIR%\LIB Release"
copy /y out32\* "%OUTDIR%\LIB Release" 1>nul
rd out32 /s /q
) else (
move out32 "%OUTDIR%\LIB Release"
move out32 "%OUTDIR%\LIB Release" 1>nul
)
if exist "%OUTDIR%\DLL Release" (
copy /y out32dll\* "%OUTDIR%\DLL Release"
copy /y out32dll\* "%OUTDIR%\DLL Release" 1>nul
rd out32dll /s /q
) else (
move out32dll "%OUTDIR%\DLL Release"
move out32dll "%OUTDIR%\DLL Release" 1>nul
)

rem Move the PDB files
move tmp32\lib.pdb "%OUTDIR%\LIB Release"
move tmp32dll\lib.pdb "%OUTDIR%\DLL Release"
move tmp32\lib.pdb "%OUTDIR%\LIB Release" 1>nul
move tmp32dll\lib.pdb "%OUTDIR%\DLL Release" 1>nul

rem Remove the intermediate directories
rd tmp32 /s /q
Expand Down

0 comments on commit daf959f

Please sign in to comment.