blob: efbec864a54eb1f0ea83804c9020a3e312942614 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$NetBSD: patch-Makefile,v 1.1 2015/01/17 15:34:21 wiedi Exp $
install to correct prefix
--- Makefile.orig 2013-11-02 05:56:09.000000000 +0000
+++ Makefile
@@ -3,9 +3,7 @@
# Friday November 1, 2013
# Jon Stacey <jon@jonsview.com>
-prefix=/usr/local
-
-CC=clang
+prefix=$(DESTDIR)$(PREFIX)
build: screenbrightness
@@ -20,4 +18,4 @@ clean:
install:
mkdir -p $(prefix)/bin
- install -s -m 0755 screenbrightness $(prefix)/bin
\ No newline at end of file
+ install -s -m 0755 screenbrightness $(prefix)/bin
|