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:
authorRaja R Harinath <harinath@hurrynot.org>2004-06-24 18:43:35 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-06-24 18:43:35 +0400
commitf6e4fb2e6a008d338b24b0bfd098851fbc8c01db (patch)
tree9c1e74a231a913c396e2d70285fb881c956f989f /mcs/class/IBM.Data.DB2
parentcd66bf819254299c5cd97d92cc6a4be3390cf222 (diff)
* IBM.Data.DB2/Makefile: Disable for 'net_2_0'.
* ICSharpCode.SharpZipLib/AssemblyInfo.cs (AssemblyVersion): Set different version for the net_2_0 profile. svn path=/trunk/mcs/; revision=30315
Diffstat (limited to 'mcs/class/IBM.Data.DB2')
-rw-r--r--mcs/class/IBM.Data.DB2/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/mcs/class/IBM.Data.DB2/Makefile b/mcs/class/IBM.Data.DB2/Makefile
index e0e57a22b91..adf7533c684 100644
--- a/mcs/class/IBM.Data.DB2/Makefile
+++ b/mcs/class/IBM.Data.DB2/Makefile
@@ -7,5 +7,9 @@ LIB_MCS_FLAGS = /unsafe /r:$(corlib) /r:System.dll \
/r:System.Xml.dll /r:System.Data.dll
NO_TEST = yes
+ifeq (net_2_0, $(PROFILE))
+all-local install-local test-local run-test-local clean-local dist-local uninstall-local:
+else
include ../../build/library.make
+endif