2004-12-04 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Sat, 4 Dec 2004 18:26:07 +0000 (18:26 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Sat, 4 Dec 2004 18:26:07 +0000 (18:26 -0000)
* library.make,
  profiles/default.make,
  profiles/basic.make : use PLATFORM_PATH_SEPARATOR.

svn path=/trunk/mcs/; revision=37088

mcs/build/ChangeLog
mcs/build/library.make
mcs/build/profiles/basic.make
mcs/build/profiles/default.make

index 95aaec29cf0773f4d5faf4a21e0368c693d1ed7f..0fda19d7e0c8fae2ac6994663a0337f6944de48d 100644 (file)
@@ -1,3 +1,9 @@
+2004-12-04  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * library.make,
+         profiles/default.make,
+         profiles/basic.make : use PLATFORM_PATH_SEPARATOR.
+
 2004-12-03  Raja R Harinath  <rharinath@novell.com>
 
        * profiles/basic.make (MCS): Run the INTERNAL_MCS.
index 0ed9f3a3f07e628e4aa7ee4c05a6ec0aa3716c9b..88a8b77555dc59c86026a6f98d425ba96002a596 100644 (file)
@@ -77,13 +77,13 @@ endif
 endif
 
 gacutil = $(topdir)/tools/gacutil/gacutil.exe
-GACUTIL = MONO_PATH="$(topdir)/class/lib/default:$$MONO_PATH" $(RUNTIME) $(gacutil)
+GACUTIL = MONO_PATH="$(topdir)/class/lib/default$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(gacutil)
 
 ifdef NO_SIGN_ASSEMBLY
 SN = :
 else
 sn = $(topdir)/class/lib/net_1_1_bootstrap/sn.exe
-SN = MONO_PATH="$(topdir)/class/lib/net_1_1_bootstrap:$$MONO_PATH" $(RUNTIME) $(sn)
+SN = MONO_PATH="$(topdir)/class/lib/net_1_1_bootstrap/$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(sn)
 SNFLAGS = -q -R
 endif
 
index d81ec33a2e2bac4f90b7906c98c6ccd088158a55..6a26c59526d9d29150b8abd774282a220519bf79 100644 (file)
@@ -1,7 +1,7 @@
 # -*- makefile -*-
 
 BOOTSTRAP_MCS = $(EXTERNAL_MCS)
-MCS = MONO_PATH="$(topdir)/class/lib/$(PROFILE):$$MONO_PATH" $(INTERNAL_MCS)
+MCS = MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_MCS)
 
 PROFILE_MCS_FLAGS = -d:NET_1_1 -d:ONLY_1_1 -d:BOOTSTRAP_WITH_OLDLIB
 NO_SIGN_ASSEMBLY = yes
index 1789c26155cfbedff89bdeeb5ad965d18f4cf2b2..569c424efcb560b1c72d6fcab3251d7c37af4a53 100644 (file)
@@ -15,9 +15,9 @@
 # in the MONO_PATH too).
 
 ifdef PLATFORM_MONO_NATIVE
-BOOTSTRAP_MCS = MONO_PATH="$(topdir)/class/lib/net_1_1_bootstrap:$$MONO_PATH" $(RUNTIME) $(topdir)/class/lib/net_1_1_bootstrap/mcs.exe
-MCS = MONO_PATH="$(topdir)/class/lib/$(PROFILE):$$MONO_PATH" $(INTERNAL_MCS)
-MBAS = MONO_PATH="$(topdir)/class/lib/$(PROFILE):$$MONO_PATH" $(INTERNAL_MBAS)
+BOOTSTRAP_MCS = MONO_PATH="$(topdir)/class/lib/net_1_1_bootstrap$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(topdir)/class/lib/net_1_1_bootstrap/mcs.exe
+MCS = MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_MCS)
+MBAS = MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_MBAS)
 else
 BOOTSTRAP_MCS = $(EXTERNAL_MCS)
 MCS = $(PLATFORM_RUNTIME) $(BOOTSTRAP_MCS) /lib:$(topdir)/class/lib/$(PROFILE)