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:
authorMiguel de Icaza <miguel@gnome.org>2004-05-04 01:41:59 +0400
committerMiguel de Icaza <miguel@gnome.org>2004-05-04 01:41:59 +0400
commit466b4c0feced6f2a2a8a4ddaebe11500919a2710 (patch)
treee03c6225af8ca9bb9ea709a32ba84faa6917130f /scripts
parent7d49d4eb0f4b2a305584ed529ce69b52e070fddb (diff)
Flush
svn path=/trunk/mono/; revision=26646
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.am5
-rw-r--r--scripts/mcs.in6
2 files changed, 8 insertions, 3 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index 2a48f6ecd6d..151b9b34cb1 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -19,13 +19,14 @@ plat_bindir = $(bindir)
mono_one_instdir = $(libdir)/mono/1.0
mono_two_instdir = $(libdir)/mono/2.0
endif
+gtkdir = $(libdir)/mono/gtk-sharp
mcs: mcs.in
- sed -e 's^\@mono_one_instdir\@^$(mono_one_instdir)^g' -e 's^\@bindir\@^$(bindir)^g' -e 's^\@mono_interp\@^$(MONO_INTERP)^g' -e's^\@plat_bindir\@^$(plat_bindir)^g' < $(srcdir)/mcs.in > mcs.tmp \
+ sed -e 's^\@gtkdir\@^$(gtkdir)^g' -e 's^\@mono_one_instdir\@^$(mono_one_instdir)^g' -e 's^\@bindir\@^$(bindir)^g' -e 's^\@mono_interp\@^$(MONO_INTERP)^g' -e's^\@plat_bindir\@^$(plat_bindir)^g' < $(srcdir)/mcs.in > mcs.tmp \
&& mv mcs.tmp mcs
gmcs: gmcs.in
- sed -e 's^\@mono_two_instdir\@^$(mono_two_instdir)^g' -e 's^\@bindir\@^$(bindir)^g' -e 's^\@libdir\@^$(libdir)^g' -e 's^\@mono_interp\@^$(MONO_INTERP)^g' -e's^\@plat_bindir\@^$(plat_bindir)^g' < $(srcdir)/gmcs.in > gmcs.tmp \
+ sed -e 's^\@gtkdir\@^$(gtkdir)^g' -e 's^\@mono_two_instdir\@^$(mono_two_instdir)^g' -e 's^\@bindir\@^$(bindir)^g' -e 's^\@libdir\@^$(libdir)^g' -e 's^\@mono_interp\@^$(MONO_INTERP)^g' -e's^\@plat_bindir\@^$(plat_bindir)^g' < $(srcdir)/gmcs.in > gmcs.tmp \
&& mv gmcs.tmp gmcs
mbas: mbas.in
diff --git a/scripts/mcs.in b/scripts/mcs.in
index f8ce4ffad06..73e3ed59496 100644
--- a/scripts/mcs.in
+++ b/scripts/mcs.in
@@ -1,2 +1,6 @@
#!/bin/sh
-exec @bindir@/@mono_interp@ @mono_one_instdir@/mcs.exe "$@"
+#
+# Yes, the -lib: there is required, in preparation for Beta2, remove
+# this script at your own risk
+#
+exec @bindir@/@mono_interp@ @mono_one_instdir@/mcs.exe -lib:@gtkdir@ "$@"