From 07e5bd67e15e2a83db1a38829b1f60f97498d1b1 Mon Sep 17 00:00:00 2001 From: miguel Date: Sat, 2 May 2009 17:26:59 +0000 Subject: [PATCH] For MCS, override csproj-local to report the right compiler git-svn-id: svn+ssh://mono-cvs.ximian.com/source/trunk/mcs@133395 e3ebcda4-bce8-0310-ba0a-eca2169e7518 --- mcs/Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/mcs/Makefile b/mcs/Makefile index 627b6b9aec..dd1f6d72b9 100644 --- a/mcs/Makefile +++ b/mcs/Makefile @@ -84,6 +84,17 @@ KEEP_OUTPUT_FILE_COPY = yes include ../build/executable.make endif +csproj-local: + config_file=`basename $(PROGRAM) .exe`-$(PROFILE).input; \ + echo $(thisdir):$$config_file >> $(topdir)/../mono/msvc/scripts/order; \ + (echo $(is_boot); \ + echo $(BOOT_COMPILE); \ + echo $(USE_MCS_FLAGS) $(LIBRARY_FLAGS) $(LIB_MCS_FLAGS); \ + echo $(PROGRAM); \ + echo $(BUILT_SOURCES_cmdline); \ + echo $(build_lib); \ + echo $(response)) > $(topdir)/../mono/msvc/scripts/inputs/$$config_file + # # Below this line we have local targets used for testing and development # @@ -156,4 +167,3 @@ q: cs-parser.cs qh echo -e 'var a = from f in System.IO.Directory.GetFiles ("/tmp") where f == "passwd" select f;' | mono csharp.exe - -- 2.11.4.GIT