aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorwiso <wiso@svn>2010-07-16 20:06:45 +0000
committerwiso <wiso@svn>2010-07-16 20:06:45 +0000
commitdd977cb5a847d9eba0921f3a1b9f8869bdfbd304 (patch)
treeec6174942eea58f63edd8363873d844f4e2d957f /project
parentb02c6f8f2e39d02fae8d4ca9b41031f08bcd0c45 (diff)
[WIN32] delete getdeps.bat and references
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@31860 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'project')
-rw-r--r--project/Win32BuildSetup/BuildSetup.bat2
-rw-r--r--project/Win32BuildSetup/dependencies/getdeps.bat18
2 files changed, 0 insertions, 20 deletions
diff --git a/project/Win32BuildSetup/BuildSetup.bat b/project/Win32BuildSetup/BuildSetup.bat
index 87a2b9b228..2cfce05949 100644
--- a/project/Win32BuildSetup/BuildSetup.bat
+++ b/project/Win32BuildSetup/BuildSetup.bat
@@ -178,7 +178,6 @@ IF %comp%==vs2008 (
Echo asound.conf>>exclude.txt
Echo voicemasks.xml>>exclude.txt
Echo Lircmap.xml>>exclude.txt
- Echo getdeps.bat>>exclude.txt
md BUILD_WIN32\Xbmc
@@ -187,7 +186,6 @@ IF %comp%==vs2008 (
copy ..\..\copying.txt BUILD_WIN32\Xbmc > NUL
copy ..\..\LICENSE.GPL BUILD_WIN32\Xbmc > NUL
copy ..\..\known_issues.txt BUILD_WIN32\Xbmc > NUL
- call dependencies\getdeps.bat > NUL
xcopy dependencies\*.* BUILD_WIN32\Xbmc /Q /I /Y /EXCLUDE:exclude.txt > NUL
IF %comp%==vs2008 (
xcopy vs_redistributable\vs2008\vcredist_x86.exe BUILD_WIN32\Xbmc /Q /I /Y /EXCLUDE:exclude.txt > NUL
diff --git a/project/Win32BuildSetup/dependencies/getdeps.bat b/project/Win32BuildSetup/dependencies/getdeps.bat
deleted file mode 100644
index 4de792a332..0000000000
--- a/project/Win32BuildSetup/dependencies/getdeps.bat
+++ /dev/null
@@ -1,18 +0,0 @@
-@echo off
-rem copies additional dependencies from lib directories
-
-set CUR_PATH=%cd%
-cd "%~dp0"
-md ..\..\..\system\webserver > nul
-xcopy /Y ..\..\..\lib\libmicrohttpd_win32\bin\*.dll ..\..\..\system\webserver
-
-rem copy python lib
-IF EXIST ..\..\..\system\python\Lib rmdir ..\..\..\system\python\Lib /S /Q
-echo .svn>py_exclude.txt
-echo test>>py_exclude.txt
-echo plat->>py_exclude.txt
-md ..\..\..\system\python\Lib
-xcopy ..\..\..\xbmc\lib\libPython\Python\Lib ..\..\..\system\python\Lib /E /Q /I /Y /EXCLUDE:py_exclude.txt > NUL
-del py_exclude.txt
-cd "%CUR_PATH%"
-set CUR_PATH= \ No newline at end of file