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:
authorMarek Habersack <grendel@twistedcode.net>2009-11-18 02:28:09 +0300
committerMarek Habersack <grendel@twistedcode.net>2009-11-18 02:28:09 +0300
commitfb6dbf5086eae7f662ed604e8b4437a6929b358e (patch)
treeb42e995518318fef3229e41dad58fbf40198e8a3 /runtime
parent1ff88cb40bda51819c55d85b982f3f109d7c6e41 (diff)
Forward port of r146378
svn path=/trunk/mono/; revision=146386
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am8
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 92286350e30..93898465dde 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -71,7 +71,7 @@ clean-local:
endif BUILD_MCS
-TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/ilasm $(tmpinst)/bin/gmcs
+TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/ilasm $(tmpinst)/bin/gmcs $(tmpinst)/bin/al2
# now a misnomer, but it'll go away soon enough.
if ENABLE_NUNIT_TESTS
@@ -163,6 +163,12 @@ $(tmpinst)/bin/ilasm: $(tmpinst)/bin/mono Makefile
echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/ilasm/ilasm.exe"'" "$$@"' >> $@ ; \
chmod +x $@
+$(tmpinst)/bin/al2: $(tmpinst)/bin/mono Makefile
+ echo '#! /bin/sh' > $@ ; \
+ r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
+ echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/net_2_0/al.exe"'" "$$@"' >> $@ ; \
+ chmod +x $@
+
test-support-files: $(TEST_SUPPORT_FILES)
@: