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:
authorZoltan Varga <vargaz@gmail.com>2015-03-02 22:03:56 +0300
committerZoltan Varga <vargaz@gmail.com>2015-03-02 22:03:56 +0300
commit13685c2326a96543520a4820a378f2fb93cb14d0 (patch)
treef801daaf4bfeab17210d6a601b9404407f768b90 /mcs/class/System.Transactions
parentfa5e78a8d7bfada7141bed5b02b1072736c5614c (diff)
[build] Add the assemblies in LIB_REFS to LIB_MCS_FLAGS automatically to reduce duplication.
Diffstat (limited to 'mcs/class/System.Transactions')
-rw-r--r--mcs/class/System.Transactions/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.Transactions/Makefile b/mcs/class/System.Transactions/Makefile
index 66837a21808..46df964af01 100644
--- a/mcs/class/System.Transactions/Makefile
+++ b/mcs/class/System.Transactions/Makefile
@@ -7,10 +7,10 @@ MOBILE_PROFILE := $(filter monotouch monodroid xammac mobile mobile_static, $(PR
LIBRARY = System.Transactions.dll
ifdef MOBILE_PROFILE
LIB_REFS = System
-LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll /define:MOBILE
+LIB_MCS_FLAGS = /r:$(corlib) /define:MOBILE
else
LIB_REFS = System System.Configuration
-LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll /r:System.Configuration.dll
+LIB_MCS_FLAGS = /r:$(corlib)
endif
TEST_MCS_FLAGS = /nowarn:1595 $(LIB_MCS_FLAGS)