Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Christoforides <alexis@thenull.net>2017-03-10 05:23:47 +0300
committerAlexis Christoforides <alexis@thenull.net>2017-03-10 05:23:47 +0300
commit420b6c314548785eaac2e7129ae16cb5016b5ec0 (patch)
treefbad758ae1478426ff4605a48210321f02958624 /packaging/MacSDK
parent1bad3716e3e8f5ddb45927f354728aa7218e96dd (diff)
[MacSDK] Fix Ironlangs build with latest MSBuild
Diffstat (limited to 'packaging/MacSDK')
-rw-r--r--packaging/MacSDK/ironlangs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/MacSDK/ironlangs.py b/packaging/MacSDK/ironlangs.py
index 0d4e336a879..85a0eb4c6dc 100644
--- a/packaging/MacSDK/ironlangs.py
+++ b/packaging/MacSDK/ironlangs.py
@@ -23,9 +23,9 @@ class IronLanguagesPackage(GitHubTarballPackage):
self.ironpython = os.path.join(
self.workspace, 'ironpython', 'bin') + os.sep
self.sh(
- 'xbuild /p:Configuration=Release /p:OutDir="%{ironruby}" Solutions/Ruby.sln')
+ 'xbuild /p:PublicSign=false /p:Configuration=Release /p:OutDir="%{ironruby}" Solutions/Ruby.sln')
self.sh(
- 'xbuild /p:Configuration=Release /p:OutDir="%{ironpython}" Solutions/IronPython.Mono.sln')
+ 'xbuild /p:PublicSign=false /p:Configuration=Release /p:OutDir="%{ironpython}" Solutions/IronPython.Mono.sln')
def install_ruby_scripts(self, path, installdir):
for cmd, ext in map(os.path.splitext, os.listdir(path)):