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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2019-11-25 23:10:26 +0300
committerGitHub <noreply@github.com>2019-11-25 23:10:26 +0300
commite437330808f6f7838eb025e0f46898d69b044823 (patch)
treeeadf433f45cafd375ac2835cde5a21cfb98d252a /msvc/Makefile.am
parent8aa1cdfe178f462aa3bdcd787533b5def073b83d (diff)
Remove mkinstalldirs invocation from two places (#17910)
These can be easily replaced so we don't need to mirror over the mkinstalldirs file to the new repo
Diffstat (limited to 'msvc/Makefile.am')
-rw-r--r--msvc/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/msvc/Makefile.am b/msvc/Makefile.am
index b2cc4164aa1..a7082102208 100644
--- a/msvc/Makefile.am
+++ b/msvc/Makefile.am
@@ -25,8 +25,8 @@ clean-local:
install-exec-local:
@echo "Install Visual Studio build Mono runtime."
- $(mkinstalldirs) "$(DESTDIR)$(libdir)"
- $(mkinstalldirs) "$(DESTDIR)$(bindir)"
+ mkdir -p "$(DESTDIR)$(libdir)"
+ mkdir -p "$(DESTDIR)$(bindir)"
$(install_sh) $(mono_msvc_build_lib_dir)/*.lib "$(DESTDIR)$(libdir)"
$(install_sh) $(mono_msvc_build_bin_dir)/*.dll "$(DESTDIR)$(bindir)"
$(install_sh) $(mono_msvc_build_bin_dir)/*.exe "$(DESTDIR)$(bindir)"