In build:
authorRaja R Harinath <harinath@hurrynot.org>
Fri, 26 Nov 2004 04:29:27 +0000 (04:29 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Fri, 26 Nov 2004 04:29:27 +0000 (04:29 -0000)
* profiles/basic.make (real-profile-check): Prepend ./ when
executing basic-profile-check.exe.  EXTERNAL_RUNTIME can be empty.

In class/Microsoft.VisualBasic:
* Makefile (EXTRA_DISTFILES): Add Microsoft.VisualBasic.dll.resources.

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

mcs/build/ChangeLog
mcs/build/profiles/basic.make
mcs/class/Microsoft.VisualBasic/ChangeLog
mcs/class/Microsoft.VisualBasic/Makefile

index 881432bea6d91607dde87b0608e7836cbde5c5c2..45282a314e8e99e658e2d4600361b0c93eb3cd99 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-26  Raja R Harinath  <rharinath@novell.com>
+
+       * profiles/basic.make (real-profile-check): Prepend ./ when
+       executing basic-profile-check.exe.  EXTERNAL_RUNTIME can be empty.
+
 2004-11-25  Raja R Harinath  <rharinath@novell.com>
 
        * platforms/linux.make (EXTERNAL_MCS,EXTERNAL_MBAS,EXTERNAL_RUNTIME):
index 61676b94b8f8ec3a48ca0928a885805902738a1f..1d44a3df3987c12227339a742ec4c89a67af3f76 100644 (file)
@@ -22,7 +22,7 @@ real-profile-check:
        $$ok && echo 'class X { static void Main () { System.Console.Write("OK");}}' > basic-profile-check.cs; \
        $$ok && { $(EXTERNAL_MCS) basic-profile-check.cs || ok=false; }; \
        $$ok && { test -f basic-profile-check.exe || ok=false; }; \
-       $$ok && { $(EXTERNAL_RUNTIME) basic-profile-check.exe > /dev/null || ok=false; }; \
+       $$ok && { $(EXTERNAL_RUNTIME) ./basic-profile-check.exe > /dev/null || ok=false; }; \
        rm -f basic-profile-check.cs basic-profile-check.exe; \
        if $$ok; then :; else \
            echo "*** The compiler '$(EXTERNAL_MCS)' doesn't appear to be usable." 1>&2 ; \
index 3f689ebd147a14dd6baedc7e4831f33c84a08719..ebf2f6036341166ab781fe5c883d677decfacb48 100644 (file)
@@ -1,3 +1,7 @@
+2004-11-26  Raja R Harinath  <rharinath@novell.com>
+
+       * Makefile (EXTRA_DISTFILES): Add Microsoft.VisualBasic.dll.resources.
+
 2004-11-25  Raja R Harinath  <rharinath@novell.com>
 
        * Makefile (EXTRA_DISTFILES): Fix typo.
index a2a0c015fe57cf1b941b9e2e0ab4823030bc941b..4eb2649c015cfd1816ccffbf5c5d52724942d9ab 100644 (file)
@@ -12,7 +12,7 @@ LIB_MCS_FLAGS_RESOURCES = $(LIB_MCS_FLAGS)
 TXT_RESOURCES = Microsoft.VisualBasic/VBUtils.resources
 RESX_RESOURCES = 
 
-EXTRA_DISTFILES = $(TXT_RESOURCES:.resources=.txt) $(RESX_RESOURCES:.resources=.resx)
+EXTRA_DISTFILES = $(TXT_RESOURCES:.resources=.txt) $(RESX_RESOURCES:.resources=.resx) Microsoft.VisualBasic.dll.resources
 CLEAN_FILES = $(TXT_RESOURCES) $(RESX_RESOURCES)
 
 include ../../build/library.make