summaryrefslogtreecommitdiffstats
path: root/AppPkg/Applications/Python/Python-2.7.10/srcprep.bat
diff options
context:
space:
mode:
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.10/srcprep.bat')
-rw-r--r--AppPkg/Applications/Python/Python-2.7.10/srcprep.bat13
1 files changed, 13 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.10/srcprep.bat b/AppPkg/Applications/Python/Python-2.7.10/srcprep.bat
new file mode 100644
index 0000000000..afd55c198d
--- /dev/null
+++ b/AppPkg/Applications/Python/Python-2.7.10/srcprep.bat
@@ -0,0 +1,13 @@
+@echo off
+REM Prepare the Python sources for EDK II by copying
+REM the .h files from the PyMod tree into the Python tree.
+REM Directory correspondence is maintained.
+
+FOR %%d IN (Include Modules Objects Python) DO (
+ echo.
+ echo Processing the %%d directory.
+ XCOPY /S /Y /Q PyMod-2.7.10\%%d\*.h %%d
+)
+
+echo.
+echo DONE!