From fac45104b53db14eecaf2e73d6fcc14375e961e2 Mon Sep 17 00:00:00 2001 From: Cuda-Chen Date: Mon, 28 Oct 2024 22:56:30 +0800 Subject: [PATCH] Fix missing endif --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9c6881a..77a9338 100644 --- a/Makefile +++ b/Makefile @@ -62,6 +62,7 @@ ifeq ($(UNAME_S),Darwin) ifeq (0, $(call check-coreaudio)) $(warning No CoreAudio framework installed.) ENABLE_VIRTIOSND := 0 + endif endif $(call set-feature, VIRTIOSND) ifeq ($(call has, VIRTIOSND), 1) @@ -69,7 +70,7 @@ ifeq ($(call has, VIRTIOSND), 1) ifeq ($(UNAME_S),Linux) LDFLAGS += -lasound -lpthread - else ifeq($(UNAME_S),Darwin) + else ifeq ($(UNAME_S),Darwin) LDFLAGS += lpthread CFLAGS += -framework CoreAudio endif