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:
authorJonathan Pryor <jpryor@novell.com>2006-09-14 17:23:58 +0400
committerJonathan Pryor <jpryor@novell.com>2006-09-14 17:23:58 +0400
commita51726acef6a483b21946bf9ebebd4d2f3adc1c2 (patch)
tree6213072e8e57fc94517edac9e30e26c7f8309ad0 /runtime
parentfa30f3d51f352fe732713c7ba60bbcb7f52d1ef7 (diff)
* configure.in: Add command to create runtime/etc/mono/config. This is
needed so that programs which use the bootstrap mono build get the appropriate <dllmap/> entries (in particular, the mono-shlib-cop unit tests requires that a $prefix/etc/mono/config be present to run). * runtime/Makefile.am: Create runtime/etc/mono/config. svn path=/trunk/mono/; revision=65389
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 4610d47a4b2..21de2a95960 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -6,8 +6,9 @@ tmpinst = _tmpinst
noinst_SCRIPTS = mono-wrapper monodis-wrapper semdel-wrapper
etctmp = etc
-symlinks = etc/mono/1.0/machine.config etc/mono/2.0/machine.config etc/mono/2.0/web.config
+symlinks = etc/mono/config etc/mono/1.0/machine.config etc/mono/2.0/machine.config etc/mono/2.0/web.config
+etc/mono/config : $(top_srcdir)/data/config
etc/mono/1.0/machine.config: $(top_srcdir)/data/net_1_1/machine.config
etc/mono/2.0/machine.config: $(top_srcdir)/data/net_2_0/machine.config
etc/mono/2.0/web.config: $(top_srcdir)/data/net_2_0/web.config