Skip to content

Commit

Permalink
Makefile: respect DESTDIR
Browse files Browse the repository at this point in the history
  • Loading branch information
Grimler91 committed May 15, 2021
1 parent 1383155 commit b33392b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ libtermux-exec.so: termux-exec.c
$(CC) $(CFLAGS) $(LDFLAGS) termux-exec.c -DTERMUX_PREFIX=\"$(TERMUX_PREFIX)\" -DTERMUX_BASE_DIR=\"$(TERMUX_BASE_DIR)\" -shared -fPIC -o libtermux-exec.so

install: libtermux-exec.so
install libtermux-exec.so $(PREFIX)/lib/libtermux-exec.so
install libtermux-exec.so $(DESTDIR)$(PREFIX)/lib/libtermux-exec.so

uninstall:
rm -f $(PREFIX)/lib/libtermux-exec.so
Expand Down

0 comments on commit b33392b

Please sign in to comment.