From d92a3ea5b3d53721538ac3faacef69798d5cd87a Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Wed, 28 Oct 2015 10:04:39 -0700 Subject: [PATCH] Fix distribution of .NET I still really don't like copying this around, but until we get using DNX, it's probably our best bet. Now, at least, the host can expect lib/{powershell,coreclr}. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ba2606a90d..e064b3119b 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ all: powershell-native powershell-managed powershell-managed: mkdir -p $(PSLIB) $(CLRLIB) - cp -R $(MONAD)/src/monad-ext/coreclr/Runtime $(CLRLIB) + cp -R $(MONAD)/src/monad-ext/coreclr/Runtime/* $(CLRLIB) $(MAKE) -j -C src/monad-build $(MAKE) -j -C src/monad-build test @@ -96,6 +96,7 @@ clean: clean-monad -rm *-tests.xml distclean: distclean-monad distclean-native distclean-omi clean + -rm -rf $(CLRLIB) clean-monad: $(MAKE) -C src/monad-build clean