Skip to content

Commit d530f1d

Browse files
Matheus Marchinijoyeecheung
authored andcommitted
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: #173
1 parent 995d0bb commit d530f1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ all:
77
.PHONY: install-osx
88
install-osx:
99
mkdir -p ~/Library/Application\ Support/LLDB/PlugIns/
10-
cp -rf ./out/Release/llnode.dylib \
10+
cp -rf ./llnode.dylib \
1111
~/Library/Application\ Support/LLDB/PlugIns/
1212

1313
.PHONY: uninstall-osx
@@ -17,7 +17,7 @@ uninstall-osx:
1717
.PHONY: install-linux
1818
install-linux:
1919
mkdir -p /usr/lib/lldb/plugins
20-
cp -rf ./out/Release/lib.target/llnode.so /usr/lib/lldb/plugins
20+
cp -rf ./llnode.so /usr/lib/lldb/plugins
2121

2222
.PHONY: uninstall-linux
2323
uninstall-linux:

0 commit comments

Comments
 (0)