From 1f3ec0784818bcbe0e73ea4743a19060163fd9b3 Mon Sep 17 00:00:00 2001 From: Wiktor Kwapisiewicz Date: Wed, 14 Oct 2020 21:37:31 +0200 Subject: Fix `make install` on both BSD and Linux. Closes #581. --- sop/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sop') diff --git a/sop/Makefile b/sop/Makefile index 84cd75d1..c9827d56 100644 --- a/sop/Makefile +++ b/sop/Makefile @@ -7,7 +7,7 @@ SOP ?= $(CARGO_TARGET_DIR)/debug/sqop # Tools. CARGO ?= cargo -ifneq ($(filter Darwin BSD,$(shell uname -s)),"") +ifneq ($(filter Darwin %BSD,$(shell uname -s)),) INSTALL ?= ginstall else INSTALL ?= install -- cgit v1.2.3