blob: 91ba089196011acc2387abd83a1c6fae840546f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- store/Makefile.orig 2020-08-31 20:15:35 UTC
+++ store/Makefile
@@ -5,7 +5,8 @@ CARGO_TARGET_DIR := $(abspath $(CARGO_TARGET_DIR))
# Tools.
CARGO ?= cargo
-ifeq ($(shell uname -s), Darwin)
+
+ifneq ($(filter Darwin FreeBSD,$(shell uname -s)),"")
INSTALL ?= ginstall
else
INSTALL ?= install
|