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:
authorRaja R Harinath <harinath@hurrynot.org>2004-11-25 11:00:11 +0300
committerRaja R Harinath <harinath@hurrynot.org>2004-11-25 11:00:11 +0300
commit38f890d3cfbb27330966f3084e4f2059830ad3ca (patch)
treeb35305a91bed8f9d1369677c6b98c569b29e219f /runtime
parent469353b75dc21d95ec31d8e40298b4587208385c (diff)
* runtime/Makefile.am (check-local): Use $(mkinstalldirs).
svn path=/trunk/mono/; revision=36525
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am2
1 files changed, 1 insertions, 1 deletions
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 ; \