[Mobies-commit] [commit] r4024 - UDM/trunk/Projects/Win32/VC10/src/UdmCliBridge

ksmyth at redhat1.isis.vanderbilt.edu ksmyth at redhat1.isis.vanderbilt.edu
Thu Mar 22 10:16:34 CDT 2012


Author: ksmyth
Date: Thu Mar 22 10:16:31 2012
New Revision: 4024

Log:
Use Path::GetFullPath to reduce length of paths (was over 260 on build-slave9)

Modified:
   UDM/trunk/Projects/Win32/VC10/src/UdmCliBridge/UdmCliBridgeProps.props

Modified: UDM/trunk/Projects/Win32/VC10/src/UdmCliBridge/UdmCliBridgeProps.props
==============================================================================
--- UDM/trunk/Projects/Win32/VC10/src/UdmCliBridge/UdmCliBridgeProps.props	Wed Mar 21 10:55:42 2012	(r4023)
+++ UDM/trunk/Projects/Win32/VC10/src/UdmCliBridge/UdmCliBridgeProps.props	Thu Mar 22 10:16:31 2012	(r4024)
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="utf-8"?>
 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
   <PropertyGroup Label="UserMacros">
-    <CliBridgeCppDir>$(MSBuildThisFileDirectory)\..\..\..\..\..\Build\Win32\VC10\Gen\src\UdmCliBridge\cpp</CliBridgeCppDir>
-    <CliBridgeCsDir>$(MSBuildThisFileDirectory)\..\..\..\..\..\Build\Win32\VC10\Gen\src\UdmCliBridge\cs</CliBridgeCsDir>
+    <CliBridgeCppDir>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)\..\..\..\..\..\Build\Win32\VC10\Gen\src\UdmCliBridge\cpp))</CliBridgeCppDir>
+    <CliBridgeCsDir>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)\..\..\..\..\..\Build\Win32\VC10\Gen\src\UdmCliBridge\cs))</CliBridgeCsDir>
     <UdmCliBridgeDll>UdmCliBridge.dll</UdmCliBridgeDll>
   </PropertyGroup>
   <PropertyGroup>
     <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
-    <OutDir>..\..\..\..\..\Build\Win32\VC10\$(Configuration)\</OutDir>
+    <OutDir>$([System.IO.Path]::GetFullPath(..\..\..\..\..\Build\Win32\VC10\$(Configuration)))</OutDir>
     <IntDir>$(OutDir)obj\src\$(ProjectName)\</IntDir>
   </PropertyGroup>
   <ItemDefinitionGroup>


More information about the Mobies-commit mailing list