Skip to content

Commit 46dd06e

Browse files
committed
Fix few more mcs locations
1 parent 11ef57f commit 46dd06e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

runtime/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,19 +175,19 @@ $(tmpinst)/bin/mono: mono-wrapper etc/mono/config
175175
$(tmpinst)/bin/mcs: $(tmpinst)/bin/mono Makefile
176176
echo '#! /bin/sh' > $@ ; \
177177
r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
178-
echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/basic/mcs.exe"'" "$$@"' >> $@ ; \
178+
echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/build/mcs.exe"'" "$$@"' >> $@ ; \
179179
chmod +x $@
180180

181181
$(tmpinst)/bin/gmcs: $(tmpinst)/bin/mono Makefile
182182
echo '#! /bin/sh' > $@ ; \
183183
r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
184-
echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/basic/mcs.exe -sdk:2"'" "$$@"' >> $@ ; \
184+
echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/build/mcs.exe -sdk:2"'" "$$@"' >> $@ ; \
185185
chmod +x $@
186186

187187
$(tmpinst)/bin/dmcs: $(tmpinst)/bin/mono Makefile
188188
echo '#! /bin/sh' > $@ ; \
189189
r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
190-
echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/basic/mcs.exe -sdk:4"'" "$$@"' >> $@ ; \
190+
echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/build/mcs.exe -sdk:4"'" "$$@"' >> $@ ; \
191191
chmod +x $@
192192

193193
$(tmpinst)/bin/ilasm: $(tmpinst)/bin/mono Makefile

0 commit comments

Comments
 (0)