aboutsummaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2018-02-08 21:54:09 +0000
committerSteve Holme <steve_holme@hotmail.com>2018-02-08 21:54:09 +0000
commitdaf959f6927094ec6cc651512a94e725f476bbb0 (patch)
treebdb6ecb45aa554bc69f0e5b69bd11864fdb96d36 /projects
parent648679ab8e3409aae46788e34d0cb28d358159ee (diff)
build-openssl.bat: Follow up to 648679ab8e to suppress copy/move output
Diffstat (limited to 'projects')
-rw-r--r--projects/build-openssl.bat48
1 files changed, 24 insertions, 24 deletions
diff --git a/projects/build-openssl.bat b/projects/build-openssl.bat
index 6de3fab9e..21709b76b 100644
--- a/projects/build-openssl.bat
+++ b/projects/build-openssl.bat
@@ -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
@@ -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
@@ -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
@@ -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