Skip to content

Commit

Permalink
build: fix make install-*
Browse files Browse the repository at this point in the history
`cleanup.js` now moves ./out/Release/llnode.[so,dylib] to the root of
the project, and the installers were not reflecting this change.

Fixes: #173
  • Loading branch information
Matheus Marchini authored and joyeecheung committed Mar 13, 2018
1 parent 995d0bb commit d530f1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit d530f1d

Please sign in to comment.