From d530f1d0a9a87b82e5d1c61a032d1550f03ba80e Mon Sep 17 00:00:00 2001 From: Matheus Marchini Date: Tue, 13 Mar 2018 14:23:38 -0300 Subject: [PATCH] build: fix make install-* `cleanup.js` now moves ./out/Release/llnode.[so,dylib] to the root of the project, and the installers were not reflecting this change. Fixes: https://github.com/nodejs/llnode/issues/173 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 14ebf7a1..3fc18011 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ all: .PHONY: install-osx install-osx: mkdir -p ~/Library/Application\ Support/LLDB/PlugIns/ - cp -rf ./out/Release/llnode.dylib \ + cp -rf ./llnode.dylib \ ~/Library/Application\ Support/LLDB/PlugIns/ .PHONY: uninstall-osx @@ -17,7 +17,7 @@ uninstall-osx: .PHONY: install-linux install-linux: mkdir -p /usr/lib/lldb/plugins - cp -rf ./out/Release/lib.target/llnode.so /usr/lib/lldb/plugins + cp -rf ./llnode.so /usr/lib/lldb/plugins .PHONY: uninstall-linux uninstall-linux: