1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Ruben Undheim <ruben.undheim@gmail.com>
Date: Wed, 5 Nov 2014 18:51:11 +0100
Subject: Fixes the install location (usr instead of usr/local)
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 88ed301..03decdc 100644
--- a/Makefile
+++ b/Makefile
@@ -12,4 +12,4 @@ clean:
-rm sfarkxtc 2>/dev/null || true
install: sfarkxtc
- $(INSTALL) -D sfarkxtc $(DESTDIR)/usr/local/bin/sfarkxtc
+ $(INSTALL) -D sfarkxtc $(DESTDIR)/usr/bin/sfarkxtc
|