Makefile: add missing DESTDIR

somehow, this line got overlooked...
This commit is contained in:
rofl0r 2017-11-11 10:48:36 +00:00
parent d2e7ffaaa1
commit 329462e9e8

View File

@ -15,7 +15,7 @@ debug:
$(CC) $(CFLAGS) $(CPPFLAGS) -DDEBUG -o $(TARGET) $(SOURCE) $(LIBS) $(LDFLAGS)
install:
install -d $(BINDIR)
install -d $(DESTDIR)$(BINDIR)
install -m 755 $(TARGET) $(DESTDIR)$(BINDIR)
uninstall: