summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Erik Rediger <badboy@archlinux.us>2018-01-05 15:50:31 +0100
committerGitHub <noreply@github.com>2018-01-05 15:50:31 +0100
commit43284ee4958dbc7996e293a215d99f0051356f37 (patch)
treecb8c8a05ec0c13b2fa7716b4e41da4bf327e5853
parentabc60433e6af7de67cf4e04276b575e61290d301 (diff)
parenta2ef2b69bf1660cca9440058be8635b1c32979b4 (diff)
Merge pull request #561 from zshipko/master
Fix "make install" on OpenBSD
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index eb18f58..28a7849 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