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

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Maurer <benm@mono-cvs.ximian.com>2005-05-09 03:27:19 +0400
committerBen Maurer <benm@mono-cvs.ximian.com>2005-05-09 03:27:19 +0400
commit5d59b93bd0d874adbb8cce2a652caf356a429476 (patch)
tree234ec570716003c8f7c3c4c7b55b861a576efaba /asn1view
parent0b2a7653b72e724d7e9aa72aa84169b244ee126a (diff)
In .:
2005-05-08 Ben Maurer <bmaurer@ximian.com> * configure.in: - Check for mono and put it in RUNTIME - Don't check for monoresgen, as we don't ship that any more the correct name is `resgen' In asn1view: 2005-05-08 Ben Maurer <bmaurer@ximian.com> * gtk/Makefile.am, gtk/script.in: use @RUNTIME@ rather than @bin_dir@/mono. This is a problem for people who have mono-tools and mono in a different prefix (say you install mono from rpm but want to hack on monodoc). In gnunit: 2005-05-08 Ben Maurer <bmaurer@ximian.com> * src/Makefile.am, script*.in: use @RUNTIME@ rather than @bin_dir@/mono. This is a problem for people who have mono-tools and mono in a different prefix (say you install mono from rpm but want to hack on monodoc). In docbrowser: 2005-05-08 Ben Maurer <bmaurer@ximian.com> * Makefile.am: use $(RUNTIME) rather than `mono' svn path=/trunk/mono-tools/; revision=44228
Diffstat (limited to 'asn1view')
-rw-r--r--asn1view/ChangeLog7
-rw-r--r--asn1view/gtk/Makefile.am2
-rw-r--r--asn1view/gtk/script.in2
3 files changed, 9 insertions, 2 deletions
diff --git a/asn1view/ChangeLog b/asn1view/ChangeLog
index fa0271cd..6144c5ec 100644
--- a/asn1view/ChangeLog
+++ b/asn1view/ChangeLog
@@ -1,3 +1,10 @@
+2005-05-08 Ben Maurer <bmaurer@ximian.com>
+
+ * gtk/Makefile.am, gtk/script.in: use @RUNTIME@ rather than
+ @bin_dir@/mono. This is a problem for people who have mono-tools
+ and mono in a different prefix (say you install mono from rpm but
+ want to hack on monodoc).
+
2005-05-08 Sebastien Pouliot <sebastien@ximian.com>
* Initial import into SVN.
diff --git a/asn1view/gtk/Makefile.am b/asn1view/gtk/Makefile.am
index 811fb65b..24499ff9 100644
--- a/asn1view/gtk/Makefile.am
+++ b/asn1view/gtk/Makefile.am
@@ -46,7 +46,7 @@ REWRITE = sed \
-e 's,@''bindir@,$(bindir),g' \
-e 's,@''mono_one_instdir@,$(gasnviewdir),g' \
-e 's,@''exe_file@,$@.exe,g' \
- -e 's,@''mono_interp@,mono --debug,g'
+ -e 's,@''RUNTIME@,@RUNTIME@,g'
gasnview :
$(REWRITE) $(srcdir)/script.in > $@.tmp
diff --git a/asn1view/gtk/script.in b/asn1view/gtk/script.in
index e68eb084..3318dba3 100644
--- a/asn1view/gtk/script.in
+++ b/asn1view/gtk/script.in
@@ -1,2 +1,2 @@
#!/bin/sh
-exec @bindir@/@mono_interp@ @mono_one_instdir@/@exe_file@ "$@"
+exec @RUNTIME@ @mono_one_instdir@/@exe_file@ "$@"