提交 d55cf797 编写于 作者: J Jonathan Chambers

Merge pull request #90 from Unity-Technologies/unity-staging

This week's Mono fixes
......@@ -97,6 +97,9 @@ if (not $skipbuild)
}
system("make") eq 0 or die ("Failed running make");
system("make install") eq 0 or die ("Failed running make install");
# Couldn't get automake to Just Do The Right Thing
system('make', '-C', 'scripts');
system("cp -R scripts/*.bat $monoprefix/bin");
print(">>>Making micro lib\n");
chdir("$root/mcs/class/corlib") eq 1 or die("failed to chdir corlib");
system("make PROFILE=monotouch_bootstrap") eq 0 or die ("Failed making monotouch bootstrap");
......
@echo off
@bindir@\@mono_interp@ %MONO_OPTIONS% @mono_instdir@\@framework_version@\@exe_name@.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
"%~dp0cli.bat" %MONO_OPTIONS% "%~dp0..\lib\mono\@framework_version@\@exe_name@.exe" %1 %2 %3 %4 %5 %6 %7 %8 %9
#!/bin/sh
exec @bindir@/@mono_interp@ $MONO_OPTIONS @mono_instdir@/@framework_version@/@exe_name@.exe "$@"
exec $(dirname $0)/@mono_interp@ $MONO_OPTIONS $(dirname $0)/../lib/mono/@framework_version@/@exe_name@.exe "$@"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册