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:
-rw-r--r--ChangeLog4
-rw-r--r--runtime/Makefile.am2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 84a3b349312..7f1daa27dcd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-11-25 Raja R Harinath <rharinath@novell.com>
+
+ * runtime/Makefile.am (check-local): Use $(mkinstalldirs).
+
2004-11-24 Raja R Harinath <rharinath@novell.com>
* runtime/Makefile.am (AUTOMAKE_OPTIONS): Set to 'cygnus'.
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 44d362fce2f..a8b33f7937f 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -51,7 +51,7 @@ TEST_SUPPORT_FILES = $(tmpinst)/bin/mcs $(tmpinst)/bin/mbas $(tmpinst)/bin/ilasm
endif
check-local:
- $(mkdir_p) $(tmpinst)/bin
+ $(mkinstalldirs) $(tmpinst)/bin
$(MAKE) $(TEST_SUPPORT_FILES)
d=`pwd`; PATH=$$d/$(tmpinst)/bin:$$PATH ; export PATH ; \
( cd $(mcs_topdir) && $(MAKE) RUNTIME=$$d/mono-wrapper PROFILES='$(build_profiles)' run-test-profiles ) || ret=false ; \