blob: ba1ed8a181042c8f62f56a27fd4dae61a0bdc647 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- Makefile.orig 2020-08-21 08:30:55 UTC
+++ Makefile
@@ -9,7 +9,8 @@ CFLAGS += -I../../include -I../../../openpgp-ffi/incl
PYTHON ?= python3
IPYTHON ?= ipython3
PYTEST ?= pytest-3
-ifeq ($(shell uname -s), Darwin)
+
+ifneq ($(filter Darwin FreeBSD,$(shell uname -s)),"")
INSTALL ?= ginstall
else
INSTALL ?= install
|