From 329462e9e809474d8f213c3cf87fdf6ff760ef96 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sat, 11 Nov 2017 10:48:36 +0000 Subject: [PATCH] Makefile: add missing DESTDIR somehow, this line got overlooked... --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 60a0cb4..d3f728f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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: