summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Shipko <zachshipko@gmail.com>2017-11-28 17:43:11 -0800
committerZach Shipko <zachshipko@gmail.com>2017-11-28 17:43:11 -0800
commita2ef2b69bf1660cca9440058be8635b1c32979b4 (patch)
tree74be435329849280a18bdd05bb0c785ff05c97c2
parent07d414731b771844fba1c18303a2185948f9c0a9 (diff)
Fix "make install" on OpenBSD
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c6eb229..48ff00d 100644
--- a/Makefile
+++ b/Makefile
@@ -161,7 +161,7 @@ clean:
dep:
$(CC) -MM *.c
-ifeq ($(uname_S),SunOS)
+ifeq ($(uname_S),$(filter $(uname_S),SunOS OpenBSD))
INSTALL?= cp -r
endif