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:
authorRolf Bjarne Kvinge <RKvinge@novell.com>2010-01-21 02:47:15 +0300
committerRolf Bjarne Kvinge <RKvinge@novell.com>2010-01-21 02:47:15 +0300
commitc1139cd2055032f0a94175fc34b3b09a810f8036 (patch)
tree6da914876c897e4dfb7e72fc23ca40e82ab16d53 /mcs/class/Mono.Cecil.Mdb
parentf60940cc93fd5c3c07022e134bc0180b77053fca (diff)
In class/Mono.Cecil.Mdb:
2010-01-20 Rolf Bjarne Kvinge <RKvinge@novell.com> * Makefile: Specify the path to Mono.Cecil.dll when referencing it. In tools/linker: 2010-01-20 Rolf Bjarne Kvinge <RKvinge@novell.com> * Makefile: Fetch Mono.Cecil.dll from whatever profile we happen to be building in. svn path=/trunk/mcs/; revision=149941
Diffstat (limited to 'mcs/class/Mono.Cecil.Mdb')
-rw-r--r--mcs/class/Mono.Cecil.Mdb/ChangeLog4
-rw-r--r--mcs/class/Mono.Cecil.Mdb/Makefile4
2 files changed, 7 insertions, 1 deletions
diff --git a/mcs/class/Mono.Cecil.Mdb/ChangeLog b/mcs/class/Mono.Cecil.Mdb/ChangeLog
index d951989c3b5..7713cc5bb11 100644
--- a/mcs/class/Mono.Cecil.Mdb/ChangeLog
+++ b/mcs/class/Mono.Cecil.Mdb/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-20 Rolf Bjarne Kvinge <RKvinge@novell.com>
+
+ * Makefile: Specify the path to Mono.Cecil.dll when referencing it.
+
2009-02-02 Jb Evain <jbevain@novell.com>
* Mono.Cecil.Mdb/MdbWriter.cs: add a GetDebugHeader method
diff --git a/mcs/class/Mono.Cecil.Mdb/Makefile b/mcs/class/Mono.Cecil.Mdb/Makefile
index 7a332bef180..ff34f3afb7a 100644
--- a/mcs/class/Mono.Cecil.Mdb/Makefile
+++ b/mcs/class/Mono.Cecil.Mdb/Makefile
@@ -5,7 +5,9 @@ LIBRARY = Mono.Cecil.Mdb.dll
LIBRARY_SNK = ../mono.snk
LIBRARY_PACKAGE = none
-LIB_MCS_FLAGS = /r:$(corlib) /r:Mono.Cecil.dll /d:CECIL -keyfile:$(LIBRARY_SNK)
+CECIL = $(topdir)/class/lib/$(PROFILE)/Mono.Cecil.dll
+
+LIB_MCS_FLAGS = /r:$(corlib) /r:$(CECIL) /d:CECIL -keyfile:$(LIBRARY_SNK)
NO_TEST = yes