Skip to content

Commit fc4636d

Browse files
committed
do not set PREFIX in OpenBSD Makefile
Using PREFIX blindly makes OpenBSD Ports fail to work without additional tweaks.
1 parent 0aab251 commit fc4636d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# OpenBSD build file, for portable builds please use CMake
22
PROG = tlc
33
COPTS = -Wall
4-
PREFIX ?= /usr/local
5-
BINDIR ?= ${PREFIX}/bin
6-
MANDIR ?= ${PREFIX}/man/man
4+
BINDIR ?= /usr/local/bin
5+
MANDIR ?= /usr/local/man/man
76

87
.include <bsd.prog.mk>
98

0 commit comments

Comments
 (0)