mirror of https://github.com/acidanthera/audk.git
added messages for forcing reconfig, over-write of Conf files
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7170 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
3a6b4559e5
commit
425332ec69
|
@ -162,6 +162,7 @@ if NOT exist %WORKSPACE%\Conf\FrameworkDatabase.db (
|
|||
echo copying ... FrameworkDatabase.template to %WORKSPACE%\Conf\FrameworkDatabase.db
|
||||
copy %EDK_TOOLS_PATH%\Conf\FrameworkDatabase.template %WORKSPACE%\Conf\FrameworkDatabase.db > nul
|
||||
) else (
|
||||
echo over-write ... FrameworkDatabase.template to %WORKSPACE%\Conf\FrameworkDatabase.db
|
||||
if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\FrameworkDatabase.template %WORKSPACE%\Conf\FrameworkDatabase.db > nul
|
||||
)
|
||||
|
||||
|
@ -169,6 +170,7 @@ if NOT exist %WORKSPACE%\Conf\target.txt (
|
|||
echo copying ... target.template to %WORKSPACE%\Conf\target.txt
|
||||
copy %EDK_TOOLS_PATH%\Conf\target.template %WORKSPACE%\Conf\target.txt > nul
|
||||
) else (
|
||||
echo over-write ... target.template to %WORKSPACE%\Conf\target.txt
|
||||
if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\target.template %WORKSPACE%\Conf\target.txt > nul
|
||||
)
|
||||
|
||||
|
@ -176,6 +178,7 @@ if NOT exist %WORKSPACE%\Conf\tools_def.txt (
|
|||
echo copying ... tools_def.template to %WORKSPACE%\Conf\tools_def.txt
|
||||
copy %EDK_TOOLS_PATH%\Conf\tools_def.template %WORKSPACE%\Conf\tools_def.txt > nul
|
||||
) else (
|
||||
echo over-write ... tools_def.template to %WORKSPACE%\Conf\tools_def.txt
|
||||
if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\tools_def.template %WORKSPACE%\Conf\tools_def.txt > nul
|
||||
)
|
||||
|
||||
|
@ -183,6 +186,7 @@ if NOT exist %WORKSPACE%\Conf\build_rule.txt (
|
|||
echo copying ... build_rule.template to %WORKSPACE%\Conf\build_rule.txt
|
||||
copy %EDK_TOOLS_PATH%\Conf\build_rule.template %WORKSPACE%\Conf\build_rule.txt > nul
|
||||
) else (
|
||||
echo over-write ... build_rule.template to %WORKSPACE%\Conf\build_rule.txt
|
||||
if defined RECONFIG copy /Y %EDK_TOOLS_PATH%\Conf\build_rule.template %WORKSPACE%\Conf\build_rule.txt > nul
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue