summaryrefslogtreecommitdiff
path: root/EdkModulePkg/Universal/DebugSupport/Dxe
diff options
context:
space:
mode:
authorbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>2006-04-26 20:53:56 +0000
committerbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>2006-04-26 20:53:56 +0000
commit22e0585cf8d24a7337400d5e49295737ffc000f2 (patch)
tree3a8e90713adb0b3e87d088056cb9f2606e06f700 /EdkModulePkg/Universal/DebugSupport/Dxe
parent13dda71281649eb11256fb5d2d71d16eefaefa8f (diff)
downloadedk2-platforms-22e0585cf8d24a7337400d5e49295737ffc000f2.tar.xz
Convert backslashes to forward slashes in many build files. This is necessary for Linux support.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@55 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkModulePkg/Universal/DebugSupport/Dxe')
-rw-r--r--EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.msa12
-rw-r--r--EdkModulePkg/Universal/DebugSupport/Dxe/build.xml22
2 files changed, 17 insertions, 17 deletions
diff --git a/EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.msa b/EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.msa
index 3cf5e12299..1986c1d835 100644
--- a/EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.msa
+++ b/EdkModulePkg/Universal/DebugSupport/Dxe/DebugSupport.msa
@@ -42,14 +42,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<Filename>DebugSupport.c</Filename>
<Filename>DebugSupport.dxs</Filename>
<Arch ArchType="IA32">
- <Filename>ia32\AsmFuncs.asm</Filename>
- <Filename>ia32\plDebugSupport.c</Filename>
+ <Filename>ia32/AsmFuncs.asm</Filename>
+ <Filename>ia32/plDebugSupport.c</Filename>
</Arch>
<Arch ArchType="IPF">
- <Filename>ipf\AsmFuncs.s</Filename>
- <Filename>ipf\common.i</Filename>
- <Filename>ipf\ds64macros.i</Filename>
- <Filename>ipf\plDebugSupport.c</Filename>
+ <Filename>ipf/AsmFuncs.s</Filename>
+ <Filename>ipf/common.i</Filename>
+ <Filename>ipf/ds64macros.i</Filename>
+ <Filename>ipf/plDebugSupport.c</Filename>
</Arch>
</SourceFiles>
<Includes>
diff --git a/EdkModulePkg/Universal/DebugSupport/Dxe/build.xml b/EdkModulePkg/Universal/DebugSupport/Dxe/build.xml
index b879fc094a..06a7f1de7b 100644
--- a/EdkModulePkg/Universal/DebugSupport/Dxe/build.xml
+++ b/EdkModulePkg/Universal/DebugSupport/Dxe/build.xml
@@ -11,31 +11,31 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.-->
<taskdef resource="net/sf/antcontrib/antlib.xml"/>
<property environment="env"/>
<property name="WORKSPACE_DIR" value="${env.WORKSPACE}"/>
- <import file="${WORKSPACE_DIR}\Tools\Conf\BuildMacro.xml"/><!--MODULE_RELATIVE PATH is relative to PACKAGE_DIR-->
- <property name="MODULE_RELATIVE_PATH" value="Universal\DebugSupport\Dxe"/>
- <property name="MODULE_DIR" value="${PACKAGE_DIR}\${MODULE_RELATIVE_PATH}"/>
- <property name="COMMON_FILE" value="${WORKSPACE_DIR}\Tools\Conf\Common.xml"/>
+ <import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml"/><!--MODULE_RELATIVE PATH is relative to PACKAGE_DIR-->
+ <property name="MODULE_RELATIVE_PATH" value="Universal/DebugSupport/Dxe"/>
+ <property name="MODULE_DIR" value="${PACKAGE_DIR}/${MODULE_RELATIVE_PATH}"/>
+ <property name="COMMON_FILE" value="${WORKSPACE_DIR}/Tools/Conf/Common.xml"/>
<target name="DebugSupport">
- <GenBuild baseName="DebugSupport" mbdFilename="${MODULE_DIR}\DebugSupport.mbd" msaFilename="${MODULE_DIR}\DebugSupport.msa"/>
+ <GenBuild baseName="DebugSupport" mbdFilename="${MODULE_DIR}/DebugSupport.mbd" msaFilename="${MODULE_DIR}/DebugSupport.msa"/>
</target>
<target depends="DebugSupport_clean" name="clean"/>
<target depends="DebugSupport_cleanall" name="cleanall"/>
<target name="DebugSupport_clean">
- <OutputDirSetup baseName="DebugSupport" mbdFilename="${MODULE_DIR}\DebugSupport.mbd" msaFilename="${MODULE_DIR}\DebugSupport.msa"/>
+ <OutputDirSetup baseName="DebugSupport" mbdFilename="${MODULE_DIR}/DebugSupport.mbd" msaFilename="${MODULE_DIR}/DebugSupport.msa"/>
<if>
- <available file="${DEST_DIR_OUTPUT}\DebugSupport_build.xml"/>
+ <available file="${DEST_DIR_OUTPUT}/DebugSupport_build.xml"/>
<then>
- <ant antfile="${DEST_DIR_OUTPUT}\DebugSupport_build.xml" target="clean"/>
+ <ant antfile="${DEST_DIR_OUTPUT}/DebugSupport_build.xml" target="clean"/>
</then>
</if>
<delete dir="${DEST_DIR_OUTPUT}" excludes="*.xml"/>
</target>
<target name="DebugSupport_cleanall">
- <OutputDirSetup baseName="DebugSupport" mbdFilename="${MODULE_DIR}\DebugSupport.mbd" msaFilename="${MODULE_DIR}\DebugSupport.msa"/>
+ <OutputDirSetup baseName="DebugSupport" mbdFilename="${MODULE_DIR}/DebugSupport.mbd" msaFilename="${MODULE_DIR}/DebugSupport.msa"/>
<if>
- <available file="${DEST_DIR_OUTPUT}\DebugSupport_build.xml"/>
+ <available file="${DEST_DIR_OUTPUT}/DebugSupport_build.xml"/>
<then>
- <ant antfile="${DEST_DIR_OUTPUT}\DebugSupport_build.xml" target="cleanall"/>
+ <ant antfile="${DEST_DIR_OUTPUT}/DebugSupport_build.xml" target="cleanall"/>
</then>
</if>
<delete dir="${DEST_DIR_OUTPUT}"/>