From d5a7111097c32cb34f54ed64e3d6884b31a53761 Mon Sep 17 00:00:00 2001 From: wiire Date: Thu, 7 Jan 2016 12:50:23 +0100 Subject: [PATCH] Fixed $(DESTDIR) used twice in install See #22 --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index c800ed4..6e40139 100644 --- a/src/Makefile +++ b/src/Makefile @@ -16,8 +16,8 @@ debug: install: rm -f $(BINDIR)/$(TARGET) rm -f $(LOCDIR)/$(TARGET) - install -d $(DESTDIR)$(LOCDIR) - install -m 755 $(TARGET) $(DESTDIR)$(LOCDIR) + install -d $(LOCDIR) + install -m 755 $(TARGET) $(LOCDIR) uninstall: rm $(BINDIR)/$(TARGET)