Makefile
wpa2 opened this issue · 2 comments
wpa2 commented
Bug in src/Makefile, lines 17 and 18
17 install -d
18 install -m 755
BINDIR already includes DESTDIR, because BINDIR includes RPEFIX and PREFIX includes DESTDIR:
6 PREFIX ?= $(DESTDIR)/usr
7 BINDIR = $(PREFIX)/bin
so the result is as follows:
install -d
Fix it please.
wpa2 commented
I created a Pull request with corrections.
wiire-a commented
Applied. Thank you.