From 91426527bb82fda2c0417afbae1b9a9498369dc9 Mon Sep 17 00:00:00 2001 From: Dominic Radermacher Date: Sat, 11 Apr 2020 13:08:37 +0200 Subject: fix install dir when using DESTDIR --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ee01dbd..0c79489 100644 --- a/Makefile +++ b/Makefile @@ -22,8 +22,8 @@ tidy: install: $(PROGS) @$(ECHO) "\t==> Installing programs to $(DESTDIR)/usr/bin" - @install -m 0755 -d $(DESTDIR)/usr/bin - @install -m 0755 -t $(DESTDIR)/usr/bin $(PROGS) + @install -m 0755 -d $(DESTDIR)/bin + @install -m 0755 -t $(DESTDIR)/bin $(PROGS) pack: @$(ECHO) "Cleaning up ..." ; \ -- cgit v1.2.3