aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRechi <Rechi@users.noreply.github.com>2017-04-29 16:54:44 +0200
committerRechi <Rechi@users.noreply.github.com>2017-04-29 16:54:44 +0200
commitda43bd67c47003d0ce42e00fdc6e9850aabb9c98 (patch)
tree64503165809569141722bf63cdbb0d4c72d0f7ef
parentdbb1e02b640dd5fa926698fb1ce6d828a5c4ccc6 (diff)
[buildsteps][windows] remove unused files
-rw-r--r--tools/buildsteps/win32/download-depends.bat40
-rw-r--r--tools/buildsteps/win32/download-msys.bat66
2 files changed, 0 insertions, 106 deletions
diff --git a/tools/buildsteps/win32/download-depends.bat b/tools/buildsteps/win32/download-depends.bat
deleted file mode 100644
index 802a65c699..0000000000
--- a/tools/buildsteps/win32/download-depends.bat
+++ /dev/null
@@ -1,40 +0,0 @@
-@ECHO OFF
-
-SETLOCAL
-
-SET CUR_PATH=%WORKSPACE%\project\BuildDependencies
-SET TMP_PATH=%WORKSPACE%\project\BuildDependencies\scripts\tmp
-SET APP_PATH=%WORKSPACE%
-
-cd %CUR_PATH%
-
-rem can't run rmdir and md back to back. access denied error otherwise.
-IF EXIST lib rmdir lib /S /Q
-IF EXIST include rmdir include /S /Q
-IF EXIST %TMP_PATH% rmdir %TMP_PATH% /S /Q
-
-IF $%1$ == $$ (
- SET DL_PATH="%CD%\downloads"
-) ELSE (
- SET DL_PATH="%1"
-)
-
-SET WGET=%CUR_PATH%\bin\wget
-SET ZIP=%CUR_PATH%\..\Win32BuildSetup\tools\7z\7za
-
-IF NOT EXIST %DL_PATH% md %DL_PATH%
-
-md lib
-md include
-md %TMP_PATH%
-
-cd scripts
-
-FOR /F "tokens=*" %%S IN ('dir /B "*_d.bat"') DO (
- echo running %%S ...
- CALL %%S
-)
-
-cd %CUR_PATH%
-
-rmdir %TMP_PATH% /S /Q \ No newline at end of file
diff --git a/tools/buildsteps/win32/download-msys.bat b/tools/buildsteps/win32/download-msys.bat
deleted file mode 100644
index e076c7a2e0..0000000000
--- a/tools/buildsteps/win32/download-msys.bat
+++ /dev/null
@@ -1,66 +0,0 @@
-@ECHO OFF
-
-SETLOCAL
-
-SET CUR_PATH=%WORKSPACE%\project\BuildDependencies
-SET APP_PATH=%WORKSPACE%
-SET TMP_PATH=%CUR_PATH%\scripts\tmp
-
-SET MSYS_INSTALL_PATH="%CUR_PATH%\msys"
-SET MINGW_INSTALL_PATH="%CUR_PATH%\msys\mingw"
-
-cd %CUR_PATH%
-
-rem can't run rmdir and md back to back. access denied error otherwise.
-IF EXIST %MSYS_INSTALL_PATH% rmdir %MSYS_INSTALL_PATH% /S /Q
-IF EXIST %TMP_PATH% rmdir %TMP_PATH% /S /Q
-
-IF $%1$ == $$ (
- SET DL_PATH="%CD%\downloads2"
-) ELSE (
- SET DL_PATH="%1"
-)
-
-SET WGET=%CUR_PATH%\bin\wget
-SET ZIP=%CUR_PATH%\..\Win32BuildSetup\tools\7z\7za
-
-IF NOT EXIST %DL_PATH% md %DL_PATH%
-
-IF NOT EXIST %MSYS_INSTALL_PATH% md %MSYS_INSTALL_PATH%
-IF NOT EXIST %MINGW_INSTALL_PATH% md %MINGW_INSTALL_PATH%
-IF NOT EXIST %TMP_PATH% md %TMP_PATH%
-
-cd scripts
-
-CALL get_msys_env.bat
-IF EXIST %TMP_PATH% rmdir %TMP_PATH% /S /Q
-CALL get_mingw_env.bat
-
-cd %CUR_PATH%
-
-rem update fstab to install path
-SET FSTAB=%MINGW_INSTALL_PATH%
-SET FSTAB=%FSTAB:\=/%
-SET FSTAB=%FSTAB:"=%
-ECHO %FSTAB% /mingw>>"%MSYS_INSTALL_PATH%\etc\fstab"
-SET FSTAB=%APP_PATH%
-SET FSTAB=%FSTAB:\=/%
-SET FSTAB=%FSTAB:"=%
-ECHO %FSTAB% /xbmc>>"%MSYS_INSTALL_PATH%\etc\fstab"
-
-rem patch mingw headers to compile ffmpeg
-xcopy mingw_support\postinstall\* "%MSYS_INSTALL_PATH%\postinstall\" /E /Q /I /Y
-cd "%MSYS_INSTALL_PATH%\postinstall"
-CALL pi_patches.bat
-
-cd %CUR_PATH%
-
-rem insert call to vsvars32.bat in msys.bat
-cd %MSYS_INSTALL_PATH%
-Move msys.bat msys.bat_dist
-ECHO CALL "%VS140COMNTOOLS%\..\..\VC\bin\vcvars32.bat">>msys.bat
-TYPE msys.bat_dist>>msys.bat
-
-cd %CUR_PATH%
-
-IF EXIST %TMP_PATH% rmdir %TMP_PATH% /S /Q