From 85b4af54401cf44308b210140b1ed88ba96f9ca0 Mon Sep 17 00:00:00 2001 From: Brian Callahan Date: Sun, 25 Dec 2022 02:55:41 -0500 Subject: [PATCH] make: add OpenBSD detection to GNUmakefile (#16760) --- GNUmakefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/GNUmakefile b/GNUmakefile index 501de9877..821d0f53a 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -54,6 +54,11 @@ TCCOS := netbsd LDFLAGS += -lexecinfo endif +ifeq ($(_SYS),OpenBSD) +TCCOS := openbsd +LDFLAGS += -lexecinfo +endif + ifdef ANDROID_ROOT ANDROID := 1 undefine LINUX -- 2.30.2