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:
authorMarek Habersack <grendel@twistedcode.net>2009-10-01 20:25:25 +0400
committerMarek Habersack <grendel@twistedcode.net>2009-10-01 20:25:25 +0400
commit8864608b9209a5254fca83f8059166424822a9ff (patch)
tree3001c76b2518dc79cc02cf1c805029f187f19b50 /mcs/nunit24/ConsoleRunner/nunit-console/Makefile
parent30f43d89ab7cc91961c5c71a433bdc73d97961ab (diff)
Nunit build fixes for the 1.0-less world
svn path=/trunk/mcs/; revision=143173
Diffstat (limited to 'mcs/nunit24/ConsoleRunner/nunit-console/Makefile')
-rw-r--r--mcs/nunit24/ConsoleRunner/nunit-console/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/nunit24/ConsoleRunner/nunit-console/Makefile b/mcs/nunit24/ConsoleRunner/nunit-console/Makefile
index 4061610ab56..3b0d5ce3d87 100644
--- a/mcs/nunit24/ConsoleRunner/nunit-console/Makefile
+++ b/mcs/nunit24/ConsoleRunner/nunit-console/Makefile
@@ -13,7 +13,7 @@ NO_TEST = yo
EXTRA_DISTFILES = nunit-console.csproj nunit-console_VS2005.csproj
-ifeq (net_2_0, $(PROFILE))
+ifneq (net_2_0, $(PROFILE))
NO_INSTALL = yes
install-local: install-symlink
uninstall-local: uninstall-symlink
@@ -24,7 +24,7 @@ include ../../../build/library.make
symlinkdir = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)
install-symlink:
$(MKINSTALLDIRS) $(DESTDIR)$(symlinkdir)
- cd $(DESTDIR)$(symlinkdir) && rm -f $(LIBRARY_NAME) && ln -s ../1.0/$(LIBRARY_NAME) $(LIBRARY_NAME)
+ cd $(DESTDIR)$(symlinkdir) && rm -f $(LIBRARY_NAME) && ln -s ../2.0/$(LIBRARY_NAME) $(LIBRARY_NAME)
uninstall-symlink:
rm -f $(DESTDIR)$(symlinkdir)/$(LIBRARY_NAME)