diff options
author | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-06-16 17:48:34 +0000 |
---|---|---|
committer | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-06-16 17:48:34 +0000 |
commit | 5179dda3f8b027ccf3d75a0168c9dae412ba16e8 (patch) | |
tree | cec24aac99688debba356cbf334b3356c2a1cd8d /Tools/Source | |
parent | 92b34fde250b9793bd76bf55907d4a27b053d08d (diff) | |
download | edk2-platforms-5179dda3f8b027ccf3d75a0168c9dae412ba16e8.tar.xz |
Use an absolute path to specify tool executables.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@545 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source')
-rw-r--r-- | Tools/Source/TianoTools/VfrCompile/build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/Source/TianoTools/VfrCompile/build.xml b/Tools/Source/TianoTools/VfrCompile/build.xml index 7b73cf6de2..d927c44a57 100644 --- a/Tools/Source/TianoTools/VfrCompile/build.xml +++ b/Tools/Source/TianoTools/VfrCompile/build.xml @@ -99,13 +99,13 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. </target>
<target name="Antlr" depends="init" unless="CheckDepends">
- <exec dir="${basedir}/${ToolName}" executable="antlr" failonerror="TRUE">
+ <exec dir="${basedir}/${ToolName}" executable="${env.FRAMEWORK_TOOLS_PATH}/antlr" failonerror="TRUE">
<arg line="-CC -e3 -ck 3 -o . VfrCompile.g"/>
</exec>
</target>
<target name="Dlg" depends="Antlr" unless="CheckDepends">
- <exec dir="${basedir}/${ToolName}" executable="dlg" failonerror="TRUE">
+ <exec dir="${basedir}/${ToolName}" executable="${env.FRAMEWORK_TOOLS_PATH}/dlg" failonerror="TRUE">
<arg line="-C2 -i -CC -o . parser.dlg"/>
</exec>
</target>
|