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. --- sq/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sq') diff --git a/sq/Makefile b/sq/Makefile index 8b7e11c1..74a0c512 100644 --- a/sq/Makefile +++ b/sq/Makefile @@ -7,7 +7,7 @@ SQ ?= $(CARGO_TARGET_DIR)/debug/sq # 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