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 Sieradzki <msierad@mono-cvs.ximian.com>2007-01-23 12:04:40 +0300
committerMarek Sieradzki <msierad@mono-cvs.ximian.com>2007-01-23 12:04:40 +0300
commit902327f91048d0b814d2d1c8e26bf061f33777fa (patch)
treeab01c3755364be619cebe601b0dccceb9289b063
parent40bec1f7442d88f945137e19ab7467f7de241a76 (diff)
2007-01-23 Marek Sieradzki <marek.sieradzki@gmail.com>
* Makefile: Fix Windows build. svn path=/trunk/mcs/; revision=71504
-rw-r--r--mcs/tools/xbuild/ChangeLog4
-rw-r--r--mcs/tools/xbuild/Makefile11
2 files changed, 10 insertions, 5 deletions
diff --git a/mcs/tools/xbuild/ChangeLog b/mcs/tools/xbuild/ChangeLog
index 5244afb1f79..e259bd98f2f 100644
--- a/mcs/tools/xbuild/ChangeLog
+++ b/mcs/tools/xbuild/ChangeLog
@@ -1,3 +1,7 @@
+2007-01-23 Marek Sieradzki <marek.sieradzki@gmail.com>
+
+ * Makefile: Fix Windows build.
+
2007-01-21 Marek Sieradzki <marek.sieradzki@gmail.com>
* xbuild/Microsoft.VisualBasic.targets: Added.
diff --git a/mcs/tools/xbuild/Makefile b/mcs/tools/xbuild/Makefile
index b65bff5d1cb..eafc9d62edb 100644
--- a/mcs/tools/xbuild/Makefile
+++ b/mcs/tools/xbuild/Makefile
@@ -17,15 +17,16 @@ install-extras:
$(INSTALL_DATA) xbuild/Microsoft.Build.xsd $(DESTDIR)$(EXTRAS_DIR)
$(INSTALL_DATA) xbuild/Microsoft.Common.targets $(DESTDIR)$(EXTRAS_DIR)
$(INSTALL_DATA) xbuild/Microsoft.CSharp.targets $(DESTDIR)$(EXTRAS_DIR)
- cp xbuild/Microsoft.CSharp.targets xbuild/Microsoft.CSharp.Targets
- $(INSTALL_DATA) xbuild/Microsoft.CSharp.Targets $(DESTDIR)$(EXTRAS_DIR)
$(INSTALL_DATA) xbuild/Microsoft.VisualBasic.targets $(DESTDIR)$(EXTRAS_DIR)
- cp xbuild/Microsoft.VisualBasic.targets xbuild/Microsoft.VisualBasic.Targets
- $(INSTALL_DATA) xbuild/Microsoft.VisualBasic.Targets $(DESTDIR)$(EXTRAS_DIR)
-
$(MKINSTALLDIRS) $(DESTDIR)$(EXTRAS_DIR)/MSBuild
$(INSTALL_DATA) xbuild/MSBuild/Microsoft.Build.CommonTypes.xsd $(DESTDIR)$(EXTRAS_DIR)/MSBuild
$(INSTALL_DATA) xbuild/MSBuild/Microsoft.Build.Core.xsd $(DESTDIR)$(EXTRAS_DIR)/MSBuild
+ifneq ($(PLATFORM),win32)
+ cp xbuild/Microsoft.CSharp.targets xbuild/Microsoft.CSharp.Targets
+ $(INSTALL_DATA) xbuild/Microsoft.CSharp.Targets $(DESTDIR)$(EXTRAS_DIR)
+ cp xbuild/Microsoft.VisualBasic.targets xbuild/Microsoft.VisualBasic.Targets
+ $(INSTALL_DATA) xbuild/Microsoft.VisualBasic.Targets $(DESTDIR)$(EXTRAS_DIR)
+endif
EXTRA_DISTFILES = \
xbuild/xbuild.rsp \