summaryrefslogtreecommitdiff
path: root/dirs.proj
diff options
context:
space:
mode:
authorJoel Hendrix <jhendrix@microsoft.com>2015-08-05 15:51:05 -0700
committerJoel Hendrix <jhendrix@microsoft.com>2015-08-05 15:51:05 -0700
commite3ff23223ecd2d1970b54704c24a4471710b2b6f (patch)
treeb3a17e1e1846c307e80f170dd1ee129c7daf978c /dirs.proj
parentdb8ca2f23fc8865f1a3b6d7c861db448c977b02f (diff)
downloadcoreclr-e3ff23223ecd2d1970b54704c24a4471710b2b6f.tar.gz
coreclr-e3ff23223ecd2d1970b54704c24a4471710b2b6f.tar.bz2
coreclr-e3ff23223ecd2d1970b54704c24a4471710b2b6f.zip
Fix bad msbuild properties so that conditions behave as expected.
[tfs-changeset: 1511107]
Diffstat (limited to 'dirs.proj')
-rw-r--r--dirs.proj4
1 files changed, 2 insertions, 2 deletions
diff --git a/dirs.proj b/dirs.proj
index a59584335b..60cbbedcc4 100644
--- a/dirs.proj
+++ b/dirs.proj
@@ -14,13 +14,13 @@
<BuildInPhase2>true</BuildInPhase2>
<BuildSysBinaries>true</BuildSysBinaries>
<!-- for now only binplace the xplat bits during official builds -->
- <GetAllXPlatBinaries Condition="'$(GetAllXPlatBinaries)' == '' and '$(OfficialBuild)' != ''">true</GetAllXPlatBinaries>
+ <GetAllXPlatBinaries Condition="'$(GetAllXPlatBinaries)' == '' and '$(OFFICIAL_BUILD_MACHINE)' != ''">true</GetAllXPlatBinaries>
</PropertyGroup>
<!-- Build in all phases -->
<ItemGroup>
<ProjectFile Include="src\dirs.proj" Condition="'$(BuildSysBuildOnlyForARM64)' == 'true'" />
- <ProjectFile Include="xplat\GetAllXPlatBinaries.proj" Condition="'$(GetAllXPlatBinaries)' == 'true' and '$(FeatureCoreclr)' == 'true' and '$(TargetArch)' == 'amd64'" />
+ <ProjectFile Include="xplat\GetAllXPlatBinaries.proj" Condition="'$(GetAllXPlatBinaries)' == 'true' and '$(FeatureCoreclr)' == 'true' and '$(BuildArchitecture)' == 'amd64'" />
</ItemGroup>
<!--Import the targets-->