summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominic Radermacher <blip@mockmoon-cybernetics.ch>2020-04-11 13:08:37 +0200
committerDominic Radermacher <blip@mockmoon-cybernetics.ch>2020-04-11 13:08:37 +0200
commit91426527bb82fda2c0417afbae1b9a9498369dc9 (patch)
tree8b6c883fa59de701dcd455ee4f42305ff92073cb
parenteca2124b44d269b95ae895202976c478dc5ecdcd (diff)
fix install dir when using DESTDIR
-rw-r--r--Makefile4
1 files 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 ..." ; \