From 08b2a8e886ca5800f2e7ece20ee68ae7bd91593f Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Sat, 28 Oct 2006 16:37:44 +0000 Subject: [PATCH] Don't build muted on OpenBSD, it is not supported. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@46377 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- utils/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/Makefile b/utils/Makefile index f41d8f369c..747e048f20 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -23,6 +23,10 @@ ifeq ($(OSARCH),SunOS) UTILS:=$(filter-out muted,$(UTILS)) endif +ifeq ($(OSARCH),OpenBSD) + UTILS:=$(filter-out muted,$(UTILS)) +endif + ifeq ($(POPT_LIB),) UTILS:=$(filter-out smsq,$(UTILS)) endif